/* Simple maintenance page styles */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sanofi close button styling */
.sanofi-close-btn {
    background-color: #7F7FD8;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.sanofi-close-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    background-color: #6B6BC8;
}

.sanofi-close-btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(127, 127, 216, 0.25);
}

/* Card styling */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    background-color: #7F7FD8;
    color: white;
}

/* Ensure proper centering */
.container-fluid {
    padding: 20px;
}

/* Make sure the card is properly sized */
.col-md-6.col-lg-5 {
    max-width: 500px;
}

/* Alert styling for maintenance window */
.alert-info {
    background-color: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
}

.alert-info .alert-heading,
.alert-info h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert-info p {
    color: rgba(255, 255, 255, 0.9);
}

/* Ensure card title is properly styled */
.card-title {
    color: white;
    font-weight: 600;
}

/* Ensure card text is readable */
.card-text {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive design */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem !important;
    }
    
    .sanofi-close-btn {
        width: 28px;
        height: 28px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
}