body {
    height: 100vh;
    margin: 4rem 0 0 0;
    padding: 0;
}

.btn-custom {
    text-align: center;
    border-radius: 1em;
    border: none;
    background: none;
    background: rgba(255, 255, 255, 0.4);
}

.btn-custom:hover {
    transform: scale(1.02, 1.02);
    transition: transform 330ms linear;
    background: rgba(255, 255, 255, 0.5);
}

.btn-custom.accueil {
    font-size: 3vw;
    height: 8vw;
    width: fit-content;
    min-width: 16vw;
}

.fw-medium.accueil {
    font-size: 1.3vw;
}

.fw-bold.club {
    font-size: 1.5rem;
}

.fw-medium.club {
    font-size: 1rem;
}

.flex-column.accueil {
    height: 20vw;
}

.imgEoliaMain {
    width: 30vw;
}

.bigDivAccueil {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.halfDivAccueil {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-brand-img {
    border-radius: 25%;
}

.hidden-info {
    opacity: 0;
    visibility: hidden;
    transform: scale(0, 0);
    transition: transform 1s ease-in-out, opacity 0.5s ease-in-out, visibility 0s 0.5s;
    /* Delay visibility transition */
}

.div-concealer:hover+.hidden-info {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0s;
}

.bg-sombre {
    background-color: #252c30;
}

.bg-white ul.no-bullets {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.modal-content.club {
    max-width: fit-content;
    border: none;
}

.filterBar {
    margin: 0;
    padding: 0;
    z-index: 1;
    width: 50%;
    height: 100%;
    background-color: #21272a;
    position: absolute;
    float: right;
    right: 0;
    top: 0;
    overflow: hidden;
}

.fit-content {
    width: fit-content;
    height: fit-content;
}

.min-vh-75 {
    min-height: 75vh !important
}

.min-vh-50 {
    min-height: 50vh !important
}

.min-vh-25 {
    min-height: 25vh !important
}

.seance-annule {
    color: red;
    text-decoration: line-through;
}

.seance-annule-visible {
    color: red;
    text-decoration: none;
}

.seance-vigilance {
    color: orange;
}

.seance-ok {
    color: green;
}

a {
    color: #4f81bd;
}

a:hover {
    color: #4f81bd;
}

a {
    color: #4f81bd;
}

a:hover {
    color: #4f81bd;
}

a.seance-ok {
    color: green;
}

a.seance-ok:hover {
    color: green;
}

a.seance-ok:visited {
    color: green;
}

a.seance-vigilance {
    color: orange;
}

a.seance-vigilance:hover {
    color: orange;
}

a.seance-vigilance:visited {
    color: orange;
}

.t-color-black {
    color: unset;
}

.blue {
    background-color: #4f81bd;
}

.btn.blue:hover {
    background-color: #4f75bd;
}

.styleText {
    font-family: "Open Sans", sans-serif;
}

.custom-dropdown {
    border: none !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    padding: 0.8rem 0 !important;
    margin-top: 0.5rem !important;
    background-color: #fff !important;
    min-width: 220px !important;
}

.custom-dropdown .dropdown-item {
    padding: 0.65rem 1.5rem !important;
    font-weight: 500 !important;
    color: #252C30 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item:focus {
    background-color: rgba(79, 129, 189, 0.1) !important;
    color: #4f81bd !important;
    padding-left: 1.8rem !important;
}

/* Custom Forfait Dropdown Styles */
.forfait-custom-dropdown {
    position: relative;
    width: 100%;
    min-height: 58px;
}

.forfait-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 58px;
    overflow: hidden;
}

.forfait-dropdown-toggle:hover {
    border-color: #4f81bd;
}

.forfait-custom-dropdown.active .forfait-dropdown-toggle {
    border-color: #4f81bd;
    box-shadow: 0 0 0 0.2rem rgba(79, 129, 189, 0.25);
}

.forfait-dropdown-text {
    color: #6c757d;
    font-size: 1rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 30px);
    margin-right: 0.5rem;
}

.forfait-dropdown-text.selected {
    color: #212529;
}

.forfait-dropdown-arrow {
    color: #6c757d;
    transition: transform 0.2s ease;
    margin-left: 0.5rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.forfait-custom-dropdown.active .forfait-dropdown-arrow {
    transform: rotate(180deg);
}

.forfait-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
}

.forfait-custom-dropdown.active .forfait-dropdown-menu {
    display: block;
}

.forfait-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.forfait-dropdown-item:hover {
    background-color: rgba(79, 129, 189, 0.1);
}

.forfait-dropdown-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.forfait-dropdown-item.disabled:hover {
    background-color: transparent;
}

.forfait-dropdown-item.disabled input[type="checkbox"] {
    cursor: not-allowed;
}

.forfait-dropdown-item.disabled label {
    cursor: not-allowed;
    color: #6c757d;
}

.forfait-dropdown-item.forced {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 3px solid #28a745;
}

.forfait-dropdown-item.forced label {
    font-weight: 600;
    color: #155724;
}

.forfait-dropdown-item.forced:hover {
    background-color: rgba(40, 167, 69, 0.15);
}

.forfait-dropdown-item input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.forfait-dropdown-item label {
    cursor: pointer;
    margin: 0;
    flex: 1;
    color: #212529;
}

.forfait-dropdown-group-label {
    padding: 0.5rem 0.75rem;
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
}

/* Form floating compatibility */
.form-floating > .forfait-custom-dropdown {
    padding-top: 0;
}

.form-floating > .forfait-custom-dropdown .forfait-dropdown-toggle {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > label {
    z-index: 2;
}