  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }

        body {
            background: #F2F5F9;
           font-family: "Roboto", sans-serif !important;
            min-height: 100vh;
            padding: 20px;
        }

        .gostudent-card {
             display: flex;
            justify-content: center;
            align-items: center;
            max-width: 960px;
            width: 30%;
            background-color: #FFFFFF;
            border-radius: 32px;
            box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.03);
            padding: 17px 13px;
            /*margin: auto;*/
        }

        /* En-tête */
        .header-title {
            font-size: 26px;
            font-weight: 700;
            color: #0B1B32;
            margin-bottom: 8px;
        }

        /* SECTION FILTRES - AJOUTÉE */
        .filters-section {
            background: #F8FAFE;
            border-radius: 60px;
            padding: 8px 12px 8px 24px;
            margin: 20px 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #E3EAF3;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        .filter-label {
            font-weight: 600;
            color: #1F2C4F;
            font-size: 15px;
            margin-right: 6px;
        }

        .filter-chip {
            background: white;
            border: 1px solid #CFDDEB;
            border-radius: 40px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 500;
            color: #1D2C4E;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: default;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }

        .filter-chip i {
            color: #7A8AA8;
            font-size: 13px;
        }

        .filter-chip.active {
            background: #1D2C4E;
            border-color: #1D2C4E;
            color: white;
        }

        .filter-chip.active i {
            color: white;
        }

        .filter-clear {
            color: #3F5C8A;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            padding: 8px 16px;
            border-left: 2px solid #DDE5F0;
            margin-left: 8px;
        }

        .filter-clear:hover {
            text-decoration: underline;
        }

        /* Grille de profs */
        .teacher-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin-bottom: 32px;
        }

        .teacher-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-start;
            border-bottom: 1px solid #EDF2F7;
            padding-bottom: 24px;
        }
        .teacher-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .teacher-info {
            flex: 2;
            min-width: 260px;
        }

        .teacher-name-line {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
           gap: 21px 40px;
            margin-bottom: 8px;
        }

        .teacher-name {
            font-size: 20px;
            font-weight: 700;
            color: #0F1C3D;
            letter-spacing: -0.01em;
        }

        .availability-badge {
            background-color: #E3F7E8;
            color: #0F7B3A;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .teacher-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            margin: 10px 0 8px;
            color: #3A4559;
            font-size: 15px;
            font-weight: 500;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .experience-tag {
            background-color: #F1F4FA;
            padding: 2px 10px;
            border-radius: 40px;
            font-size: 13px;
            color: #1E2B4F;
            font-weight: 500;
            white-space: nowrap;
        }

        .subjects-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 12px 0 10px;
        }

        .subject-pill {
            background: #F4F7FC;
            color: #1F2A48;
            padding: 5px 15px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid #E3E9F2;
        }

        .teacher-description {
            color: #2D3A5E;
            font-size: 15px;
            line-height: 1.5;
            margin: 8px 0 4px;
            max-width: 95%;
        }

        .read-more {
            color: #3366BB;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            margin-left: 4px;
        }

        .teacher-side {
            flex: 1;
            min-width: 180px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 14px;
        }

        .rating-box {
            background-color: #F9FAFE;
            border-radius: 16px;
            padding: 12px 16px;
            width: 100%;
            border: 1px solid #E9EEF6;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .stars-row {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stars-row i {
            color: #F1C40F;
            font-size: 16px;
        }

        .stars-row .average {
            font-weight: 700;
            font-size: 16px;
            color: #0B1C34;
            margin-left: 4px;
        }

        .stars-row .max {
            color: #7C889E;
            font-weight: 400;
            font-size: 15px;
        }

        .trustpilot-row {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #1D2B4B;
            font-size: 14px;
            font-weight: 500;
            padding-top: 7px;
            margin-top: 3px;
        }

        .fake-trust {
            background: #00B67A;
            border-radius: 20px;
            color: white;
            font-size: 12px;
            width: 20px;
            height: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .price-tag {
            font-weight: 700;
            font-size: 18px;
            color: #0B1C34;
            background: #F1F6FB;
            padding: 8px 16px;
            border-radius: 40px;
            width: fit-content;
            border: 1px solid #DAE5F2;
            white-space: nowrap;
        }

        .btn-essai {
            background-color: #FFC107;
            border: none;
            color: #0B1C34;
            font-weight: 700;
            font-size: 15px;
            padding: 12px 24px;
            border-radius: 50px;
            cursor: default;
            width: 100%;
            text-align: center;
            border: 1px solid #E6AC00;
            box-shadow: 0 4px 10px rgba(255, 193, 7, 0.25);
            letter-spacing: 0.3px;
        }

        /* Bannière de recherche */
        .find-banner {
            background: linear-gradient(95deg, #EAF1FE 0%, #F2F4FC 100%);
            border-radius: 28px;
            padding: 28px 28px 24px 28px;
            margin-top: 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #DBE6F5;
        }

        .banner-text h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0B1C34;
            margin-bottom: 8px;
        }

        .banner-text p {
            color: #2F3D5E;
            font-size: 16px;
            font-weight: 400;
            max-width: 450px;
        }

        .btn-lancez {
            background-color: #1D2B4F;
            border: none;
            color: white;
            font-weight: 600;
            font-size: 16px;
            padding: 14px 36px;
            border-radius: 60px;
            cursor: default;
            box-shadow: 0 6px 14px rgba(0, 20, 40, 0.2);
            border: 1px solid #14223C;
        }

        @media (max-width: 650px) {
            .teacher-side {
                align-items: flex-start;
                width: 100%;
            }
            .filters-section {
                border-radius: 30px;
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .filter-clear {
                border-left: none;
                border-top: 2px solid #DDE5F0;
                padding-left: 0;
                margin-left: 0;
                width: 100%;
            }
        }
        .filters {
    display: flex;
    gap: 15px;
    background: #0f2b6c;
    padding: 12px;
    border-radius: 10px;
    align-items: center;
}

/* ===== BOX ===== */
.filter-box {
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 10px;
    flex: 1;
    position: relative;
    border: 2px solid transparent;
    transition: 0.2s ease;
}

/* Focus effect */
.filter-box:focus-within {
    border-color: #2d6cdf;
    box-shadow: 0 0 0 2px rgba(45,108,223,0.15);
}

/* ===== INPUT + SELECT ===== */
.filter-box input,
.filter-box select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    background: transparent;
    color: #333;
}

/* Remove native select arrow */
.filter-box select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Custom arrow */
.filter-box::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    font-size: 12px;
    color: #777;
    pointer-events: none;
}

/* Only apply arrow to select */
.filter-box input + .clear-btn + select,
.filter-box select {
    padding-right: 25px;
}

/* Icons */
.filter-box i {
    color: #666;
    font-size: 14px;
}

/* Clear button */
.clear-btn {
    border: none;
    background: none;
    cursor: pointer;
    color: #888;
    font-size: 13px;
}

.clear-btn:hover {
    color: #000;
}

/* ===== BUTTON ===== */
.btn-filter {
    background: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-filter:hover {
    background: #f2f2f2;
}
.date-range {
  display: block;
  color: #666;
  margin-top: 5px;
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
    padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  border-bottom: 1px solid #8080803b;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}
modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.close-btn {
  position: absolute;
  right: 10px;
  top: 0;
  cursor: pointer;
  font-size: 20px;
}

/* Days */
.days-container {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  justify-content: center;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -15rem -1rem auto;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  appearance: none;
}
.day {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  width: 80px;
  cursor: pointer;
}

.day span {
  display: block;
  color: #777;
}

.day strong {
  font-size: 18px;
}

.day small {
  color: #777;
}

.day.active {
  background: #0b5ed7;
  color: #fff;
}

.day.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Time */
.time-section {
  text-align: center;
}

.time-section h5 {
  color: #0b5ed7;
  font-weight: bold;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.time {
  padding: 12px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 6px;
  cursor: pointer;
  color: gray;
}

.time.selected {
  border: 2px solid #0b5ed7;
  background: #eef2ff;
  color: #0b5ed7;
}

/* Footer */
.modal-footer-book {
  text-align: center;
  margin-top: 20px;
}

.btn-book {
  background: #0b5ed7;
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn-book:hover {
  background: #162d6b;
}.dataTables-info {
  font-size: 14px;
  color: #6c757d;
  padding-top: 8px;
}

/* Pagination container */
.pagination {
  gap: 6px;
}

/* Buttons */
.pagination .paginate_button a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  color: #0b5ed7;
  background: #fff;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* Hover */
.pagination .paginate_button a:hover {
  background: #0b5ed7;
  color: #fff;
  border-color: #0b5ed7;
  text-decoration: none;
}

/* Active page */
.pagination .active a {
  background: #0b5ed7;
  color: #fff;
  border-color: #0b5ed7;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Disabled */
.pagination .disabled a {
  opacity: 0.5;
  pointer-events: none;
}

/* Next / Previous */
.pagination .previous a,
.pagination .next a {
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .dataTables-info {
    text-align: center;
    margin-bottom: 10px;
  }

  .pagination {
    justify-content: center !important;
  }
}
