/* DASHBOARD */
.listereporting-block {
    width: 49%;
    height: 200px; /* Hauteur fixe */
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column; /* Permet de gérer facilement le scroll à l’intérieur */
}
    .listereporting-block:hover {
        transform: scale(1.05);
    }
    .listereporting-block h4 {
        font-size: 16px;
    }

    .listereporting-list {
        flex: 1; /* Prend tout l’espace restant dans le bloc */
        overflow-y: auto; /* Barre de défilement verticale si nécessaire */
        margin-top: 10px; /* Petit écart entre le titre/description et la liste */
        text-align: left; /* Alignement du texte de la liste */
        padding-right: 5px; /* Pour que la barre de scroll ne chevauche pas le texte */
    }

.legend-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 8px;
    padding: 4px 0; /* Un peu d’espace entre chaque élément */
    border-bottom: 1px solid #eee; /* Optionnel : séparateur léger */
    grid-template-columns: 1fr;
}


.dashboard {
    display: flex;
    flex-wrap: wrap; /* Permet le retour à la ligne si l’écran est étroit */
    justify-content: center; /* Centre horizontalement les blocs */
    gap: 1rem; /* Espace entre les blocs */
    margin-top: 0.5rem;
}

.chart-block {
    position: relative;
    align-items: center;
    width: 32%;
    height: 300px; /* 300px puisque Height du composant = 280px (DonutIndicator.razor) */
    min-height: 100px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 8px;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

    .chart-block:hover {
        transform: scale(1.05);
    }

    .chart-block h4 {
        margin: 0 0 0 0; 
        font-size: 1em;
        color: #333;
        text-align: center; 
    }


    .chart-block p {
        font-size: 0.9em;
        color: #666;
    }
.chart-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex: 1;
}

.chart-canvas-wrapper {
    flex: 1;
    /*flex: 0 0 auto;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.chart-legend {
    /*
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    */

    position: absolute;
    bottom: 10px; /* 10px au-dessus du bas du bloc */
    right: 10px; /* 10px à l’intérieur du côté droit */
    display: flex;
    flex-direction: column; /* liste verticale */
    align-items: flex-start; /* alignement à gauche */
    text-align: left;
    font-size: 12px; /* plus petit */
    gap: 4px;
}

.legend-item {
    /*
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 8px;
    */
    display: flex;
    align-items:center;
    gap: 6px;
}

.legend-color {
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #ccc;
    flex-shrink: 0;
    /*
    width: 14px;
    height: 14px;
    */
    width: 10px;
    height: 10px;
}

    /* FIN DASHBOARD */

    .btn:hover {
        transform: translateY(-2px);
    }
/* POLICE DE CARACTERES */
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

html, body {
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
        height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* AJOUT GTO */

/* ECRANS DETAIL */
/* ============= */

/* Force le checkbox à rester bien à gauche */
.form-check {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-top: 4px;
}

label span.required {
    color: #21A393;
    margin-left: 3px;
}

.btn-vert {
    background-color: #21A393;
    border: none;
    color: white;
    border-radius:32px;
}
    .btn-vert:hover {
        background-color: #e06f40;
    }

.btn-delete {
    color: #fff;
    background-color: #ED6D60;
    border-color: #fff;
}
    .btn-delete:hover {
        color: #000;
        background-color: #ED6D60;
        border-color: #000;
    }


.btn-showcollapse {
    color: #fff;
    background-color: #66398E;
    border-color: #fff;
}

    .btn-showcollapse:hover {
        color: #000;
        background-color: #6F5096;
        border-color: #000;
    }

.btn-showdetail {
    color: #fff;
    background-color: #FFB74F;
    border-color: #fff;
}

    .btn-showdetail:hover {
        color: #000;
        background-color: #FFB74F;
        border-color: #000;
    }

.btn-showdetail-trombone {
    color: #fff;
    background-color: #1C69D4;
    border-color: #fff;
}

    .btn-showdetail-trombone:hover {
        color: #000;
        background-color: #1C69D4;
        border-color: #000;
    }

.btn-showsubitems {
    color: #fff;
    background-color: #21A393;
    border-color: #fff;
}

    .btn-showsubitems:hover {
        color: #fff;
        background-color: #21A393;
        border-color: #000;
    }

.btn-printer {
    color: #fff;
    background-color: #2A4670;
    border-color: #fff;
}

    .btn-printer:hover {
        color: #fff;
        background-color: #192841;
        border-color: #000;
    }

/* Ajuste la hauteur des champs pour un alignement propre */
.form-control {
    width: 70%;
    min-height: 42px;
    font-size: 13px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

    .form-control:focus {
        border-color: #1abc9c;
        box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
        outline: none;
        background-color: #fafffe;
    }

    .form-control:hover {
        border-color: #cbd5e0;
    }


.form-control-filter {
    font-size: 12px;
    width: 100%;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    transition: all 0.2s ease;
}

    .form-control-filter:focus {
        border-color: #1abc9c;
        box-shadow: 0 0 0 2px rgba(26, 188, 156, 0.08);
        outline: none;
    }

.form-label-control {
    font-size: 14px;
}

/* Les labels au-dessus */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

/* En-tête de page avec actions */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.form-header-title {
    display: flex;
    align-items: center;
}

    .form-header-title h5 {
        font-weight: bold;
        margin-bottom: 0;
        color: #2c3e50;
    }

.form-header-actions {
    display: flex;
    gap: 0.5rem;
}

/* Boutons d'action */
.btn-cancel {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 16px;
}

    .btn-cancel:hover {
        background-color: #f8f9fa;
        border-color: #adb5bd;
        color: #141618;
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .btn-cancel:active {
        transform: translateY(0);
    }


.btn-save {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}



/* Groupes de formulaire */
.form-field-group {
    margin-bottom: 1rem;
}

.form-field-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.required-indicator {
    color: #dc3545;
    margin-left: 2px;
}

/* Séparateur */
.form-section-divider {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid #dee2e6;
}

/* Footer de formulaire */
.form-footer {
    margin-top: 2rem;
    padding-top: 1rem;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3e50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Checkbox moderne */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1abc9c;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
}

/* Placeholder style */
.form-control::placeholder {
    color: #a0aec0;
    opacity: 1;
}

/* Textarea */
textarea.form-control {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}


/* Labels avec * en orange */
label {
    font-weight: 500;
}

/* FIN ECRANS DETAIL */
/* ================= */

.alert-chargement {
    background-color: #21A393;
    color: white;
    font-weight: 500;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.9rem;
}

/* TITRE PAGE LISTE */
/* ================ */

/* Bandeau principal */
.header-bar {
    background-color: transparent;
}

/* Badge total */
.badge-total {
    background-color: #21A393;
    color: white;
    font-weight: 500;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.9rem;
}

.btn-green {
    background-color: green;
    border: none;
    border-radius: 10px;
    padding: 6px 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}
    .btn-green:hover {
        background-color: greenyellow;
    }

/* Boutons à droite */
.btn-light {
    background-color: white;
    border: none;
    border-radius: 10px;
    padding: 6px 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

    .btn-light:hover {
        background-color: #f0f0f0;
    }

.btn-create {
    filter: none;
    background-color: #21A393;
    color: white;
    border: none;
    padding: 6px 14px;
    font-weight: 200;
    border-radius: 16px;
}

    .btn-create:hover {
        color: white;
        background-color: #1f9d8d;
    }

/* FIN TITRE PAGE */
/* ============== */

/* Effet hover plus lisible */
.table tbody tr:hover:not(.collapse) {
    background-color: #e9ecef;
}

/* Style propre pour le bloc de détails */
.details-container {
    background-color: #f9f9f9;
    padding: 12px 20px;
    border-top: 1px solid #ddd;
}

/* FENETRES MODALES */
/* ================ */
.modal-responsive .modal-content {
    background-color: #e6f4ea; /* vert très clair, doux pour les yeux */
    border: 2px solid #21A393; /* vert principal */
    color: #1b5e20; /* texte vert foncé */
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.modal-responsive .modal-header {
    background-color: #21A393;
    color: white;
    border-bottom: 2px solid #388e3c;
}

.modal-responsive .modal-footer {
    background-color: #e6f4ea;
    border-top: 2px solid #4caf50;
}

.modal-responsive .btn-create {
    background-color: #4caf50;
    border-color: #388e3c;
    color: white;
}

    .modal-responsive .btn-create:hover {
        background-color: #43a047;
        border-color: #2e7d32;
    }
/* FIN FENETRES MODALES */


.titre-page {
    filter: none !important; /* supprime tout filtre appliqué par le thème */
    color: #192841 !important;
}

.entete-tableau {
    background-color: #192841 !important;
    color: #fff;
    border-color: #192841;
}

.customPage {
    /* 
    background-color: #258cfb; gris très clair 
    color: red;  optionnel, pour le texte 
    */
}

/* Couleurs alternées */
.row-light {
    filter: none !important; /* supprime tout filtre appliqué par le thème */
    background-color: #fff !important;
}

.row-dark {
    filter: none !important; /* supprime tout filtre appliqué par le thème */
    background-color: #EBEBEB !important;
}

.hover-cursor {
    cursor: pointer; /* s-resize; */ /* pointer;*/
    font-weight: bold;
}

    .hover-cursor:hover {
        background-color: #f0f0f0;
        color:#192841;
    }

table {
    font-size: 12px;
}

.table_standard {
    font-size: 12px;
    width: 100%; /* Le tableau occupe 100% de son conteneur */
    table-layout: auto; /* Laisse le tableau adapter sa taille selon le contenu */
}

.table_collapse {
    font-size: 12px;
    width: 100%; /* Le tableau occupe 100% de son conteneur */
    table-layout: fixed; /* Force un layout fixe pour les colonnes */
}

/* Liste version "CARD" , partie Header */
.card-custom-font-header {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
}

/* Liste version "CARD" , partie Body */
.card-custom-font-body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
}

/* Liste version "CARD" , partie Header + body (en cas de besoin) */
.card-custom-font {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
}

.th_td_standard {
    word-wrap: normal; /* Le texte se coupe et passe à la ligne si nécessaire */
    white-space: nowrap; /* Empêche les retours à la ligne automatiques */
    overflow: visible; /* Le texte s'adapte à la largeur sans troncature */
}

.th_td_collapse {
    /*width: 20%; */ /* Chaque colonne prendra 20% de la largeur totale du tableau */
    word-wrap: break-word; /* Permet au texte de se couper et d'aller à la ligne */
    white-space: normal; /* Autorise les retours à la ligne naturels */
    text-align: left; /* Aligne le texte à gauche pour une meilleure lisibilité */
    padding: 10px; /* Ajoute un espace autour du texte */
    overflow: hidden; /* Évite les débordements */
    box-sizing: border-box; /* Inclut le padding dans la largeur */
    font-size:12px;
}

.th_td_col-10 {
    width: 10%;
}

.th_td_col-20 {
    width: 20%;
}

.th_td_col-30 {
    width: 30%;
}

.th_td_col-40 {
    width: 40%;
}

.th_td_col-50 {
    width: 50%;
}

th:hover {
    color: #007bff;
}

.col-workforce {
    width: 15%;
    min-width: 70px;
}

.col-type {
    width: 12%;
    min-width: 100px;
}

.col-status {
    width: 10%;
    min-width: 90px;
}

.col-date {
    width: 10%;
    min-width: 100px;
    text-align: center;
}

.col-boolean {
    width: 7%;
    min-width: 80px;
    text-align: center;
}

.col-actions {
    width: 10%;
    min-width: 110px;
    text-align: center;
}

.col-libelle {
    width: 12%;
    min-width: 130px;
    white-space: normal;
    word-wrap: break-word;
}

.col-number {
    width: 8%;
    min-width: 70px;
    text-align: center;
}

.col-actions-wide {
    width: 12%;
    min-width: 140px;
    text-align: center;
}

.col-comment {
    width: 17%;
    min-width: 140px;
    max-width: 400px;
    white-space: normal;
    word-wrap: break-word;
}

.col-trigramme {
    width: 10%;
    min-width: 100px;
}

.col-email {
    width: 15%;
    min-width: 200px;
}

.col-libelle-wide {
    width: 18%; 
    min-width: 250px;
    max-width: 400px;
    white-space: normal; 
    word-wrap: break-word; 
}
@media (max-width: 768px) {
    .th, .td {
        font-size: 14px;
    }

    .btn {
        font-size: 12px;
    }

    .input {
        width: 100%;
    }
}

.same-width {
    width: 100px;
}

button.btn-sm i {
    font-size: 16px; /* Taille des icônes */
}

button.btn-sm {
    padding: 5px; /* Réduit la taille des boutons */
}

.button-container button {
    margin-right: 10px; /* Ajoute un espace à droite de chaque bouton */
}

    .button-container button:last-child {
        margin-right: 0; /* Supprime l'espace pour le dernier bouton */
    }

.custom-dropdown {
    background-color: #1b6ec2; /* Fond clair */
    border: 1px solid #ccc; /* Bordure grise */
    border-radius: 5px; /* Bordure arrondie */
}

.dropdown-item:hover {
    background-color: #007bff; /* Fond bleu */
    border-radius: 5px; /* Bordure arrondie au survol */
}

/* FIN AJOUT */



.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

.input-field {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background-color: transparent;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: border-bottom-color 0.3s ease;
    border-radius: 0;
    background-color:white;
}

    .input-field:focus {
        outline: none;
        border-bottom-color: #f16a3d;
        background-color: transparent;
    }

    .input-field::placeholder {
        color: #bbb;
        font-size: 0.9rem;
    }

.status-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.status-badge-active {
    background-color: #21A393;
    color: ivory;
}

.status-badge-inactive {
    background-color: #FFB74F;
    color: ivory;
}

/* Responsive */
@media (max-width: 768px) {
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-header-actions {
        width: 100%;
        justify-content: flex-end;
    }
}



.welcome-banner {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.2);
}

.welcome-content {
    color: white;
}

.welcome-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .welcome-title i {
        font-size: 1.8rem;
    }

.welcome-message {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
}

.filters-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.filter-item {
    min-width: 100px;
    display: flex;
   
}

.filter-button {
    flex: 0 0 auto;
    min-width: auto;
}

.filter-label {
    font-weight: 600;
    color: #2c3e50;
    /*margin-bottom: 0.5rem;*/
    font-size: 12px;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.form-filter {
    max-width: 380px;
    height: 42px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    font-size: 14px;
}

    .form-filter:focus {
        border-color: #1abc9c;
        box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
        outline: none;
    }

.btn-kpi {
    background: #21A393;
    border: none;
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 42px;
    white-space: nowrap;
}

    .btn-kpi:hover {
        color: white;
        background: #1f9d8d;
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
        transform: translateY(-2px);
    }

    .btn-kpi:active {
        transform: translateY(0);
    }



.powerbi-container {
    display: flex;
    justify-content: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .powerbi-container iframe {
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sprints-container {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sprint-item {
    margin-bottom: 1rem;
}

.collapsible {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    cursor: pointer;
    padding: 0.5rem 0.65rem;
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .collapsible:hover {
        background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .collapsible i {
        transition: transform 0.3s ease;
    }

.nocollapsible {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-left: 4px solid #1abc9c;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-size: 15px;
    color: #2c3e50;
}

.contentinfo {
    background: #fafbfc;
    padding: 0.75rem 1.25rem;
    border-left: 3px solid #1abc9c;
    margin-top: 0.5rem;
    border-radius: 0 4px 4px 0;
}

.sprint-list {
    margin: 0;
    padding-left: 1.5rem;
}

    .sprint-list li {
        margin-bottom: 0.5rem;
        color: #495057;
        line-height: 1.6;
    }

@media (max-width: 768px) {
    .welcome-title {
        font-size: 1.5rem;
    }

    .welcome-message {
        font-size: 1rem;
    }

    .filters-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-item {
        min-width: 100%;
    }

    .btn-kpi {
        width: 100%;
        justify-content: center;
    }

    .dashboard {
        grid-template-columns: 1fr;
    }

    .powerbi-container iframe {
        width: 100%;
        height: 400px;
    }
}