/* Règlement Financier Styles */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.rounded-4 {
    border-radius: 8px !important;
}

.lh-lg {
    line-height: 1.5 !important;
}

.separator {
    display: block;
    height: 2px;
    background-color: #e99700;
}

.badge.bg-primary {
    background-color: #e99700 !important;
}

.trimestre-list .badge {
    font-weight: 500;
    min-width: 100px;
    text-align: center;
}

.trimestre-list .d-flex {
    transition: background-color 0.2s ease;
}

.trimestre-list .d-flex:hover {
    background-color: rgba(180, 117, 0, 0.05);
}

/* SVG icon colors and animations */
svg {
    transition: transform 0.3s ease;
}

.card:hover svg {
    transform: scale(1.1);
}

/* Print styles for PDF export */
@media print {
    body {
        font-family: 'Poppins', sans-serif;
        background-color: white;
    }
    
    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0;
        margin: 0;
    }
    
    .card {
        break-inside: avoid;
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
        margin-bottom: 15px;
    }
    
    .alert-danger {
        border: 1px solid #f8d7da !important;
        background-color: #fff2f2 !important;
    }
    
    header, footer, nav, .main-nav, .back-to-top, button {
        display: none !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #e99700 !important;
        margin-top: 20px;
    }
    
    img {
        display: inline-block !important;
    }
    
    .row {
        display: block !important;
    }
    
    .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .text-center {
        text-align: center !important;
    }
    
    .separator {
        margin: 10px auto;
        background-color: #e99700 !important;
    }
} 