@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

:root {
  --bs-font-sans-serif: 'Tajawal', sans-serif;
}

body {
  font-family: var(--bs-font-sans-serif);
  background-color: #f8f9fa;
}

.back-to-home {
    text-align: center;
    margin-top: 20px;
}

.login-container {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.login-container .logo {
    width: 60px;
    margin-bottom: .3rem;
}
.login-container .countdown {
    font-size: 1.2rem;
    font-weight: bold;
}

.password-rules {
    background-color: #f8f9fa;
    border-right: 4px solid #0d6efd;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.report-dashboad .h1 {
    margin-top: 15px;
}
.report-dashboad .row {
    border-color: brown;
    padding: 5px;
}

.report-dashboad .col {
    border-color: aqua;
    padding: 0px;
}

.view-report .container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.view-report .report-header {
    text-align: center;
    border-bottom: 1px solid #eee;
}

.view-report .section-title {
    color: #2c3e50;
    border-bottom: 1px solid #ddd;
}

.view-report .field-item {
    background-color: #f8f9fa;
    border-radius: 4px;
    height: 100%;
}

.view-report .field-item h4 {
    color: #3498db;
    border-bottom: 1px solid #ddd;
}

.view-report .edit-icon {
    color: #3498db;
    cursor: pointer;
    margin-right: 5px;
}

.report-accordion .toggle-icon {
background-color: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 10px;
    transition: transform 0.3s;
}

.toggle-icon.rotated {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Inversion de la flèche pour RTL */
.accordion-button::after {
margin-left: 0;
margin-right: auto;
transform: rotate(180deg); /* Rotation pour l'effet RTL */
}

/* Alignement du texte et de la flèche */
.accordion-button {
flex-direction: row-reverse;
justify-content: space-between;
text-align: right;
padding-left: 1.25rem;
padding-right: 2.5rem;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 800px;
        margin: 1.75rem auto;
    }
}