/* メンテナンス情報ページ用スタイル */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 20px auto;
}

.status-icon {
    flex-shrink: 0;
}

.status-message h2 {
    color: #ff9800;
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    text-align: left;
}

.status-message h2:after {
    display: none;
}

.status-time {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.service-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 10px;
}

.status-badge.error {
    background-color: #f44336;
    color: white;
}

.status-badge.warning {
    background-color: #ff9800;
    color: white;
}

.status-badge.success {
    background-color: #4caf50;
    color: white;
}

.timeline {
    margin: 20px 0;
    padding: 0 20px;
}

.timeline-item {
    padding: 15px 0;
    position: relative;
    border-left: 2px solid var(--primary-color);
    padding-left: 20px;
    margin-left: 10px;
}

.timeline-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.timeline-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #333;
}

.timeline-content p {
    margin: 0;
    color: #555;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.back-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.back-button:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .status-indicator {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .status-message h2 {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .timeline-item {
        padding-left: 15px;
    }
}