/* Polices: Franklin Gothic Demi (titres), IBM Plex Sans (corps) */

@keyframes animated-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Base & Body --- */
body {
  background-color: #FFFFFF;
  color: #18181B;
  font-family: 'IBM Plex Sans', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
    flex-grow: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1, h2, h3, h4 {
  font-family: 'Franklin Gothic Demi', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
}

a {
  color: #8B5CF6;
  text-decoration: none;
}

/* --- Section Hero --- */
.hero-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
    color: #FFFFFF;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/hero-background.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-title span { display: block; }
.hero-title .highlight { color: #8B5CF6; }
.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 20px auto 30px auto;
    color: #E4E4E7;
}
.hero-button {
    display: inline-block;
    background-color: #8B5CF6;
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    font-family: 'Franklin Gothic Demi', 'Arial Narrow', Arial, sans-serif;
    border: none;
    cursor: pointer;
}
.hero-button:hover {
    background-color: #7c3aed;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Section des valeurs --- */
.values-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.background-logo-pattern::after {
    content: '';
    background-image: url('/images/logo_min_blanc.png');
    background-repeat: no-repeat;
    background-position: 110% -10%;
    background-size: 400px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
    filter: invert(1);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.value-card {
    text-align: center;
}
.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: #f4f4f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
}
.value-icon svg { width: 32px; height: 32px; }
.value-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #18181B;
}
.value-description {
    color: #71717A;
    line-height: 1.6;
}

/* --- Section des offres à la une --- */
.featured-jobs-section {
    padding: 60px 0;
    background-color: #f4f4f5;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #18181B;
}
.see-all-offers {
    text-align: center;
    margin-top: 50px;
}

/* --- Section Témoignage --- */
.testimonial-section {
    background-color: #18181B;
    color: #E4E4E7;
    padding: 80px 0;
    text-align: center;
}
.testimonial-content blockquote {
    font-family: 'Franklin Gothic Demi', 'Arial Narrow', Arial, sans-serif;
    font-size: 2rem;
    line-height: 1.4;
    border: none;
    margin: 0 0 20px 0;
    padding: 0;
    max-width: 800px;
    display: inline-block;
}
.testimonial-content blockquote::before,
.testimonial-content blockquote::after {
    content: '"';
    color: #8B5CF6;
}
.testimonial-content cite {
    font-style: normal;
    font-weight: bold;
    color: #A1A1AA;
    display: block;
}

/* --- Job Grid & Cards --- */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.job-card-link { text-decoration: none; }
.job-card { border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; color: #E4E4E7; position: relative; z-index: 1; padding: 1px; background-color: #3f3f46; height: 100%; }
.job-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3); padding: 2px; background: linear-gradient(60deg, #6d28d9, #8B5CF6, #a78bfa); background-size: 300% 300%; animation: animated-gradient 1.5s ease infinite; }
.job-card-inner { background-color: #27272A; border-radius: 11px; height: 100%; display: flex; flex-direction: column; }
.job-card-image { width: 100%; height: 180px; background-color: #3f3f46; border-radius: 11px 11px 0 0; overflow: hidden; }
.job-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.job-card:hover .job-card-image img { transform: scale(1.05); }
.job-card-content { padding: 20px 25px; flex-grow: 1; display: flex; flex-direction: column; }
.job-card-title { margin-top: 0; margin-bottom: 15px; font-size: 1.25rem; color: #FFFFFF; flex-grow: 1; }
.job-card-meta { display: flex; gap: 10px; font-size: 0.85rem; font-weight: bold; flex-wrap: wrap; margin-top: auto; }
.job-card-meta span { background-color: rgba(139, 92, 246, 0.15); border: 1px solid #8B5CF6; color: #c4b5fd; padding: 5px 12px; border-radius: 15px; }

/* --- Page des Offres & Filtres --- */
.page-description {
    font-size: 1.1rem;
    color: #b7b7b7;
    margin-bottom: 40px;
    max-width: 650px;
}
.filters-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px 30px;
    padding: 20px;
    background-color: #f4f4f5;
    border-radius: 12px;
    margin-bottom: 40px;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-group label {
    font-weight: bold;
    font-size: 0.9rem;
    color: #18181B;
}
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-btn {
    padding: 8px 16px;
    border: 1px solid #d4d4d8;
    border-radius: 20px;
    background-color: #FFFFFF;
    color: #3f3f46;
    cursor: pointer;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.filter-btn:hover {
    border-color: #a1a1aa;
    background-color: #fafafa;
}
.filter-btn.active {
    background-color: #8B5CF6;
    color: #FFFFFF;
    border-color: #8B5CF6;
}
.filter-select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #d4d4d8;
    background-color: #FFFFFF;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    min-width: 200px;
}
.filter-reset-btn {
    margin-left: auto;
    padding: 8px 16px;
    border: none;
    background: none;
    color: #8B5CF6;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
}
.filter-reset-btn:hover {
    background-color: rgba(139, 92, 246, 0.1);
}
.job-card-link.hidden, .filter-group.hidden, .no-offers.hidden {
    display: none;
}
.no-offers {
    text-align: center;
    grid-column: 1 / -1;
    padding: 40px;
    background-color: #f4f4f5;
    border-radius: 12px;
}
.no-offers p:first-child {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 5px 0;
}
.no-offers p:last-child {
    color: #71717A;
    margin: 0;
}

/* --- Page de Détail de l'Offre --- */
.offer-header {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #FFFFFF;
    text-align: center;
}
.offer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.7);
    z-index: -1;
}
.offer-header .container {
    position: relative;
    z-index: 2;
}
.offer-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}
.offer-meta {
    font-size: 1.1rem;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-weight: bold;
}
.offer-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}
.offer-description h2 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.offer-description {
    line-height: 1.7;
}
.offer-description p { margin-bottom: 1.5em; }
.offer-description ul { padding-left: 20px; margin-bottom: 1.5em; }
.offer-description li { margin-bottom: 0.5em; }
.offer-summary .summary-box {
    background-color: #f4f4f5;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}
.offer-summary h3 {
    margin-top: 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.offer-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}
.offer-summary ul li {
    margin-bottom: 12px;
}
.offer-summary ul li strong {
    color: #3f3f46;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefits-list svg {
    color: #8B5CF6;
    flex-shrink: 0;
}
.application-form-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}
.application-form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* --- Animations --- */
.offers-page .job-card-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.offers-page .job-card-link.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.offers-page .filters-container {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.offers-page .filters-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transform: translateY(40px);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .offer-main-content {
        grid-template-columns: 1fr;
    }
    .offer-summary {
        order: -1;
    }
}
@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-reset-btn {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        background-color: #e5e7eb;
    }
}

/* --- Styles pour le Formulaire de Candidature --- */
.application-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f4f4f5;
    padding: 40px;
    border-radius: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    font-size: 0.9rem;
    color: #18181B;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4d4d8;
    border-radius: 6px;
    background-color: #FFFFFF;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Important pour que le padding n'augmente pas la largeur */
}

.form-group input:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

/* Section d'upload de fichiers */
.file-upload-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.file-upload-container {
    flex: 1;
}

.file-upload-box {
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border: 2px dashed #d4d4d8;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden; 
}

.file-upload-box:hover {
    border-color: #8B5CF6;
    background-color: #faf7ff;
}

.file-upload-content {
    position: relative;
    z-index: 2; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.file-upload-box.has-file {
    border-style: solid;
    border-color: #8B5CF6;
    background-color: #f5f3ff;
}

.file-upload-box.has-file .file-upload-icon {
    display: none;
}

.file-upload-icon {
    color: #8B5CF6;
    margin-bottom: 15px;
}

.file-upload-icon svg {
    width: 32px;
    height: 32px;
}

.file-upload-title {
    font-weight: bold;
    color: #18181B;
    margin-bottom: 5px;
    word-break: break-all;
    padding: 0 5px;
}

.file-upload-info {
    font-size: 0.8rem;
    color: #71717A;
}

/* Pied de formulaire */
.form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; 
    margin-top: 100px;
}

.form-group-checkbox {
    width: 100%;
    max-width: 600px; 
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.form-group-checkbox input[type="checkbox"] {
    width: 18px; 
    height: 18px;
    accent-color: #8B5CF6;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    color: #3f3f46;
    line-height: 1.5;
}

.form-group-checkbox a {
    font-weight: bold;
    text-decoration: underline;
}

.form-footer .hero-button {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1rem;
    border: none;
}

/* Responsive pour le formulaire */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .file-upload-section {
        flex-direction: column;
        gap: 20px;
    }
    .application-form {
        padding: 20px;
    }
}

/* --- Styles pour le sélecteur de date personnalisé --- */
.custom-date-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4d4d8;
    border-radius: 6px;
    background-color: #FFFFFF;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    text-align: left;
    color: #18181B;
    cursor: pointer;
}

.custom-date-input:disabled {
    background-color: #e5e7eb;
    cursor: not-allowed;
    color: #71717A;
}

.custom-date-input:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.datepicker-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.datepicker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.datepicker-container {
    position: relative;
    z-index: 210;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.datepicker-nav {
    border: none;
    background: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #3f3f46;
    padding: 5px 10px;
    border-radius: 6px;
}
.datepicker-nav:hover {
    background-color: #f4f4f5;
}

.datepicker-month-year {
    font-weight: bold;
    font-size: 1.1rem;
}

.datepicker-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.datepicker-days-of-week {
    font-size: 0.8rem;
    font-weight: bold;
    color: #71717A;
    text-align: center;
    margin-bottom: 10px;
}

#datepicker-grid-dates div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#datepicker-grid-dates .available {
    background-color: #f4f4f5;
    cursor: pointer;
}

#datepicker-grid-dates .available:hover {
    background-color: #e5e7eb;
}

#datepicker-grid-dates .disabled {
    color: #a1a1aa;
    background-color: rgba(239, 68, 68, 0.1);
    cursor: not-allowed;
}

#datepicker-grid-dates .prev-next-month {
    color: #d4d4d8;
    background-color: transparent;
}

#datepicker-grid-dates .selected {
    background-color: #8B5CF6;
    color: #FFFFFF;
    font-weight: bold;
}

#datepicker-grid-dates .in-range,
#datepicker-grid-dates .in-range-hover {
    background-color: #ddd6fe; /* Mauve plus clair */
    color: #18181B;
    border-radius: 0;
}
#datepicker-grid-dates .range-start,
#datepicker-grid-dates .range-start-hover { 
    border-radius: 6px 0 0 6px; 
}
#datepicker-grid-dates .range-end,
#datepicker-grid-dates .range-end-hover { 
    border-radius: 0 6px 6px 0; 
}

#datepicker-grid-dates div:nth-child(7n + 1).in-range,
#datepicker-grid-dates div:nth-child(7n + 1).in-range-hover,
#datepicker-grid-dates div:nth-child(7n + 1).range-start,
#datepicker-grid-dates div:nth-child(7n + 1).range-start-hover {
    border-radius: 6px 0 0 6px;
}
#datepicker-grid-dates div:nth-child(7n).in-range,
#datepicker-grid-dates div:nth-child(7n).in-range-hover,
#datepicker-grid-dates div:nth-child(7n).range-end,
#datepicker-grid-dates div:nth-child(7n).range-end-hover {
    border-radius: 0 6px 6px 0;
}

#datepicker-grid-dates .selected.range-start { border-radius: 6px; }
#datepicker-grid-dates .selected.range-end { border-radius: 6px; }


/* Styles pour la légende */
.datepicker-legend {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}
.legend-color.disabled-color { background-color: rgba(239, 68, 68, 0.1); }
.legend-color.available-color { background-color: #f4f4f5; }
.legend-color.selected-color { background-color: #8B5CF6; }

/* Styles pour la confirmation de soumission */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes icon-pop {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

.submission-success {
    text-align: center;
    padding: 40px;
    background-color: #f4f4f5;
    border-radius: 12px;
    animation: fadeIn 0.5s ease-out forwards;
}

.submission-success .success-icon {
    width: 80px;
    height: 80px;
    background-color: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-pop 0.5s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform: scale(0);
}

.submission-success h2 {
    font-size: 2rem;
    color: #18181B;
    margin-bottom: 10px;
}

.submission-success p {
    color: #71717A;
    margin-bottom: 30px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.submission-success .hero-button {
    display: inline-block;
    width: auto;
}

/* --- Styles pour la barre de progression de l'upload (Obsolète, gardé pour référence) --- */
.progress-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 25px;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-sizing: border-box;
}

/* --- NOUVEAUX STYLES POUR LA PROGRESSION DE L'UPLOAD --- */

/* État lorsque le formulaire est en cours de soumission */
.application-form.form-submitting {
    opacity: 0.6;
    pointer-events: none; /* Empêche l'interaction */
}

/* Le bouton de soumission pendant l'upload */
.form-footer .hero-button.is-uploading {
    background-color: #e5e7eb; /* Une couleur de fond neutre pour la "piste" */
    color: #18181B;
    position: relative;
    overflow: hidden;
    transition: none; /* Désactive les effets de survol */
    cursor: wait;
    padding: 0; /* On retire le padding pour que les enfants prennent toute la place */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50.5px; /* Garde la même hauteur que le bouton original */
}

.form-footer .hero-button.is-uploading:hover {
    transform: none;
    box-shadow: none;
}


/* Conteneur pour la barre de progression, se trouve derrière le texte */
.progress-bar-in-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
    border-radius: 8px;
}

/* La barre qui se remplit réellement */
.progress-bar-in-button .progress-bar-inner {
    width: 0%;
    height: 100%;
    background-color: #a78bfa; /* Une nuance plus claire du violet principal */
    transition: width 0.2s ease-out;
    border-radius: 8px;
}

/* Le contenu textuel au-dessus de la barre */
.progress-text-in-button {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    color: #18181B; /* Texte sombre pour un bon contraste */
    font-size: 0.9rem;
    text-transform: none;
    font-family: 'IBM Plex Sans', sans-serif;
}
.progress-text-in-button .progress-percentage {
    font-weight: bold;
}

/* Le conteneur de statistiques sous le bouton */
.upload-stats-container {
    display: none; /* Caché par défaut */
    justify-content: space-between;
    width: 100%;
    max-width: 300px; /* Aligné avec la largeur du bouton */
    margin: 10px auto 0 auto;
    font-size: 0.85rem;
    color: #71717A;
    font-family: 'IBM Plex Sans', sans-serif;
}

