/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Variables */
:root {
    /* Typos */
    --primary-blue-color: #001E54;

    /* Backgrounds */
    --bg-grey-color: #F4F5F9;
}

/* General */
* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-grey-color) !important;
}

h2 {
    font-size: 20px;
    color: #001e54;
    font-weight: 600;
}



.hidden { display: none; }
.m-b-0 { margin: 0 !important; }
.m-t-20 { margin-top: 20px !important; }
.m-t-40 { margin-top: 40px !important; }

.page-width {
    max-width: 1520px;
    margin: 0 auto;
}

section {
    padding: 0 40px;
}

.main-title {
    font-size: 25px;
}

.outline-button {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
}
.outline-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.outline-button--highlight {
    border-color: #00b0ba;
    color: #00b0ba;
}

.button {
    background: transparent;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    border: none;
}
.button.highlight {
    background-color: #00b0ba;
    color: white;
}

.button--disabled {
    background-color: #d3dae7;
    color: #a9b2c5;
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    border: none;
}

.label {
    font-size: 14px;
    color: #979eac;
    text-transform: uppercase;
}

.info {
    font-size: 14px;
    color: #001e54;
    font-weight: 500;
}

.section__title {
    display: flex;
    align-items: center;
}
.section__title h2 {
    margin-right: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: var(--primary-blue-color);
    margin-bottom: 20px;
}
.section__title-divider {
    background-color: #d3dae7;
    flex: 1;
    height: 1px;
    display: flex;
}

.mandatory {
    color: #979eac;
    font-size: 10px;
}

.form-checkbox {
    margin-top: 12px;
}
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #979eac;
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
}
.form-checkbox label input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background-color: #f4f5f9;
    border: 1px solid #d3dae7;
    border-radius: 5px;
    position: relative;
    margin-top: 2px;
    flex-shrink: 0;
}
.form-checkbox label input[type=checkbox]:checked::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 10px;
    width: 6px;
    height: 12px;
    border: solid #00b0ba;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.form-checkbox label a {
    color: inherit;
    text-decoration: underline;
}

.status-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.status-heading h3 {
    margin-bottom: 0;
}

.fw-400 {
    font-weight: 400;
}

.software-title-bar {
    background-color: #00b0ba;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: left;
    display: flex;
    max-width: 820px;
    width: 100%;
    margin-bottom: 20px;
}

.professor-comment {
    background-color: #e9ecf1;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 8px solid #00B0BA;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.professor-comment__label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #00B0BA;
    gap: 0.5rem;
}

.professor-comment__label .material-symbols-outlined {
    font-size: 1.25rem;
}

.professor-comment__text {
    margin: 0;
    color: #001e54;
    font-size: 14px;
    line-height: 1.6;
}

/* Variantes */
.status-icon.pending {
    background-color: #f57c55;
    color: #fff;
}

.status-icon.success {
    background-color: #cdf6cf;
    color: #0baa04;
}

.align-center {
    align-items: center !important;
}

.form-group-container.horizontal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.form-group-container.horizontal .form-group {
    max-width: 400px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    margin-top: 20px;
}
.form-group label {
    font-size: 14px;
    font-weight: 400;
    color: #001e54;
}
.form-group input {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #d3d9e1;
    background-color: #f4f6fa;
    font-size: 14px;
    color: #001E54;
}
.form-group input::-moz-placeholder {
    color: #b3bcc9;
}
.form-group input::placeholder {
    color: #b3bcc9;
}
.form-group input:focus {
    outline: none;
    border-color: #00b0ba;
    background-color: #fff;
}
.form-group .select-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #d3d9e1;
    background-color: #f4f6fa;
    /*color: #b3bcc9;*/
    color: #001E54;
    display: flex;
    font-size: 14px;
    background-image: url("data:image/svg+xml,%3Csvg fill='%239aa2b1' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-group .select-input .placeholder-option {
    color: #b3bcc9 !important;
}

.card-2 {
    border-radius: 10px;
    padding: 20px;
    background: #00b0ba;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.card-2.heading {
    background-color: #e9ecf2;
}
.card-2.heading .resume__divider {
    background-color: #00b0ba;
}

.heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.heading-row h3 {
    color: #001e54;
    margin: 0;
    font-size: 18px;
}

.highlight-color {
    border-color: #00b0ba !important;
    color: #00b0ba !important;
}

.buttons-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Fin General */
.main-header {
    background-color: #001e54;
    padding: 0 35px;
}
.main-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
.main-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
}
.main-header__logo img {
    height: 37px;
}
.main-header__logo strong {
    font-weight: bold;
}
.main-header__right {
    display: flex;
    align-items: center;
}
.main-header__nav {
    margin-right: 12px;
}
.main-header__nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-header__nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
}
.main-header__nav ul li:not(.active) a:hover {
    background-color: rgb(0, 39.1071428571, 109.5);
}
.main-header__nav ul .active a {
    background-color: #00B0BA;
}
.main-header__profile {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
}
.main-header__profile .icon {
    font-size: 16px;
}
.main-header__profile .text {
    display: inline-block;
}
.main-header__divider {
    width: 1px;
    height: 24px;
    background-color: #00b0ba;
    margin-right: 12px;
}
.main-header__avatar {
    position: relative;
    background-color: #fff;
    color: #001e54;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.main-header__avatar .main-header__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #ff4d4f;
    color: #fff;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 999px;
    font-weight: bold;
}

/* Resume */
.resume {
    margin-top: 20px;
}
.resume__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 42px 60px;
    background-color: #00b0ba;
    border-radius: 10px;
}
.resume__left {
    color: #ffffff;
    max-width: 350px;
}
.resume__left h2 {
    margin: 0 0 8px;
    color: white;
}
.resume__left p {
    margin: 0;
    font-size: 14px;
    color: #001e54;
}
.resume__left p strong {
    font-weight: 600;
    color: #001e54;
}
.resume__center {
    display: flex;
    align-items: stretch;
    gap: 32px;
    flex-wrap: wrap;
}
.resume__item-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}
.resume__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.resume__icon img {
    width: 16px;
    height: 16px;
}
.resume__icon.bg-blue {
    background-color: #79d3d9;
}
.resume__icon.bg-light-blue {
    background-color: #bfdced;
}
.resume__icon.bg-highlight {
    background-color: #00b0ba;
}
.resume__icon.bg-orange {
    background-color: #ff885b;
}
.resume__info {
    font-size: 16px;
    color: #001e54;
    display: flex;
    align-items: center;
    gap: 10px;
}
.resume__info .resume__label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.resume__info .resume__number {
    font-weight: 700;
    font-size: 50px;
    margin-right: 4px;
    color: #ffffff;
}
.resume__info strong {
    font-weight: 600;
    color: #001e54;
}
.resume__info.center {
    justify-content: center;
    flex: 1;
}
.resume__divider {
    width: 1px;
    background-color: rgb(255, 255, 255);
    align-self: stretch;
}

.filters {
    padding: 24px 40px;
}
.filters__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.filters__title {
    font-size: 20px;
    font-weight: 600;
    color: #001e54;
    margin: 0;
}
.filters__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.filters__cases {
    color: #979eac;
    background-color: #fff;
    padding: 3px 21px;
    border-radius: 15px;
}
.filters__pages {
    color: #979eac;
}
.filters__pages .total-pages,
.filters__pages .current-page {
    color: #001e54;
}
.filters__group {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 10px;
    color: #001e54;
}
.filters__group label {
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
}
.filters__group .filters__select {
    padding: 10px 20px;
    font-size: 12px;
    border: 1px solid #d3d9e1;
    border-radius: 5px;
    background-color: #fff;
    color: #001e54;
    min-width: 140px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.filters__views {
    display: flex;
    gap: 4px;
    background-color: #fff;
    border-radius: 5px;
    height: 41px;
    padding: 0 10px;
    align-items: center;
}
.filters__views .filters__view {
    background-color: transparent;
    display: flex;
    border: none;
    cursor: pointer;
    color: #979eac;
}
.filters__views .filters__view.active {
    color: #001e54;
}
.filters__views .filters__view img {
    width: 14px;
    height: 14px;
}
.filters__new-case {
    background-color: #00b0ba;
    color: #fff;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}

/* Cases */
.cases {
    padding-bottom: 40px;
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .grid-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.case-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.case-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 20px;
}
.case-card__header .tag {
    font-size: 14px;
    padding: 5px 20px;
    border-radius: 5px;
    font-weight: 500;
    white-space: nowrap;
}
.case-card__header .tag.blue {
    background-color: #d8f4f6;
    color: #00b0ba;
}
.case-card__header .tag.orange {
    background-color: #f67c56;
    color: white;
}
.case-card__header .tag.green {
    background-color: #cdf6cf;
    color: #0baa04;
}
.case-card__header .tag.archived {
    background-color: #e9ecf2;
    color: #979eac;
}
.case-card__header .case-card__date {
    font-size: 14px;
    color: #979eac;
}
.case-card__header .case-card__alert {
    margin-left: auto;
    font-size: 20px;
    border-radius: 50%;
    color: white;
    background-color: #f67c56;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}
.case-card .details {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d3dae7;
}
.case-card .details__item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.case-card .details__item .label {
    font-size: 10px;
    color: #979eac;
    text-transform: uppercase;
}
.case-card .details__item .info {
    font-size: 14px;
    color: #001e54;
    font-weight: 500;
}
.case-card .user {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-top: 20px;
}
.case-card .user__img {
    border-radius: 50%;
}
.case-card .user__img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e5eaf0;
}
.case-card .user__info {
    display: flex;
    flex-direction: column;
}
.case-card .user__info .label {
    font-size: 12px;
}
.case-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 15px;
    color: #001e54;
}
.case-card p {
    font-size: 14px;
    color: #001e54;
    margin-bottom: 16px;
}
.case-card--new {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #e5eaf0;
    color: #979eac;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}
.case-card--new .plus {
    font-size: 24px;
    line-height: 1;
}
.case-card--new p {
    margin: 0;
    color: #979eac;
}
.case-card__mentoria {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.case-card__mentoria h3 {
    font-size: 25px;
    margin: 0;
}
.case-card__mentoria p {
    font-size: 25px;
    margin: 0;
}
.case-card__mentoria-details {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.case-card__mentoria-details p {
    margin: 0;
    line-height: 1;
}
.case-card__mentoria-details .detail-l {
    border-right: 1px solid #d3dae7;
    padding-right: 10px;
}
.case-card .outline-button {
    color: #00b0ba;
    border-color: #00b0ba;
}

.site-footer {
    background-color: #001e54;
    color: #ffffff;
    padding: 48px 40px 32px;
}
.site-footer__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 32px;
}
.site-footer__left {
    max-width: 450px;
}
.site-footer__left p {
    font-size: 18px;
    line-height: 1.5;
}
.site-footer__left p strong {
    font-weight: 700;
    display: inline-block;
    margin-top: 4px;
}
.site-footer__center-info {
    display: flex;
    gap: 40px;
}
.site-footer__center-info a {
    color: #ffffff;
    text-decoration: none;
    margin-top: 20px;
}
.site-footer__center-info p {
    margin-top: 0;
}
.site-footer__center, .site-footer__right {
    font-size: 14px;
    line-height: 1.6;
}
.site-footer__right i.fa-brands {
    color: #FFFFFF;
    font-size: 20px;
}
.site-footer__center .site-footer__title, .site-footer__right .site-footer__title {
    font-weight: 400;
    color: #00b0ba;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.site-footer__social {
    display: flex;
    gap: 12px;
}
.site-footer__social a img {
    width: 20px;
    height: 20px;
}
.site-footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 0 24px;
}
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.site-footer__bottom p {
    margin: 0;
    font-size: 12px;
}
.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.site-footer__links a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.site-footer__links a:hover {
    opacity: 1;
}

.hero-slider {
    margin-top: 20px;
}
.hero-slider .swiper {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.hero-slider .hero-slide {
    position: relative;
    display: flex;
    align-items: stretch;
    aspect-ratio: 1520/450;
}
.hero-slider .hero-slide__image {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}
.hero-slider .hero-slide__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 30, 84, 0.95) 60%, transparent);
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.hero-slider .hero-slide__content {
    color: #ffffff;
    max-width: 500px;
}
.hero-slider .hero-slide__content .hero-slide__eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0px;
}
.hero-slider .hero-slide__content .hero-slide__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    color: white;
    margin-top: 0;
}
.hero-slider .hero-slide__content .button {
    background-color: #00b0ba;
    color: #fff;
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    color: #00b0ba;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
}
.hero-slider .swiper-button-prev {
    left: 16px;
}
.hero-slider .swiper-button-next {
    right: 16px;
}

.courses {
    padding-bottom: 80px;
}
.courses__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .courses__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .courses__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .courses__grid {
        grid-template-columns: 1fr;
    }
}

.course-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.course-card img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}
.course-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.course-card__content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #001e54;
    margin: 0 0 20px;
    line-height: 1.2;
}
.course-card__content p {
    font-size: 15px;
    color: #001e54;
    margin-bottom: 16px;
    margin-top: 0;
}
.course-card__label {
    font-size: 12px !important;
    text-transform: uppercase;
    color: #001e54 !important;
    font-weight: 400;
    margin-bottom: 4px;
    margin-top: 0 !important;
    margin-bottom: 15px;
    line-height: 1;
}
.course-card .button {
    background-color: #00b0ba;
    color: white;
    gap: 8px;
    margin-top: auto;
}
.course-card .outline-button {
    background: #fff;
    color: #00b0ba;
    border: 1px solid #00b0ba;
    margin-top: auto;
}
.course-card__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}
.course-card--active {
    background-color: #00b0ba;
}
.course-card--active .course-card__content {
    color: #fff;
}
.course-card--active .course-card__content h3 {
    color: #fff;
}
.course-card--active .course-card__content p {
    color: #001e54;
}
.course-card--active .button {
    background-color: white;
    color: #00b0ba;
    gap: 8px;
}

.hero-slider .swiper-pagination {
    display: flex;
    bottom: 30px;
    left: unset;
    padding-left: 80px;
    padding-bottom: 10px;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #00b0ba;
    opacity: 1;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

.resume__item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.resume__item.vertical {
    gap: 40px;
}
.resume__item-inner.vertical {
    flex-direction: column;
}
.resume__item-inner .vertical-upper {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.resume__item-inner .resume__number {
    font-weight: 700;
    font-size: 50px;
    margin-right: 4px;
    color: #ffffff;
    line-height: 1;
}

/* Login & signup */
.login {
    min-height: 100vh;
    position: relative;
    width: 100%;
}
.login .background-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.login-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    position: relative;
    z-index: 1;
    height: 100%;
}
.login-container .form-box {
    max-width: 554px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-container .form-box .logo {
    max-width: 326px;
    margin-bottom: 34px;
}
.login-container .form-box__form {
    background-color: white;
    padding: 55px 80px 90px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.login-container .form-box__form a {
    color: #00b0ba;
}
.login-container .form-box__title {
    color: #001e54;
    font-size: 25px;
    margin: 0;
    margin-bottom: 30px;
    font-weight: 600;
}
.login-container .form-box__subtitle {
    display: flex;
    gap: 5px;
    color: #001e54;
    font-weight: 400;
    margin-bottom: 28px;
}
.login-container .form-box__subtitle a {
    color: #00b0ba;
}
.login .signup-form {
    padding-top: 50px;
    padding-bottom: 50px;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}
.login-form .button {
    border: none;
    width: 100%;
    color: white;
    background-color: #00b0ba;
    text-align: center;
    margin-top: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.back-to-index {
    color: white;
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 40px;
}
.back-to-index a {
    color: white;
}

/* Breadcrumbs */
.breadcrumbs-bar {
    padding-top: 20px;
    padding-bottom: 20px;
}
.breadcrumbs-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.breadcrumbs-bar .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.breadcrumbs-bar .breadcrumbs a {
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.breadcrumbs-bar .breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs-bar .breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs-bar .breadcrumbs .material-symbols-outlined {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: -2px;
}
.breadcrumbs-bar .breadcrumbs strong {
    font-weight: 700;
    color: #001e54;
}
.breadcrumbs-bar .breadcrumbs .divider {
    color: #ccc;
}
.breadcrumbs-bar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Nuevo Caso */
.case-new .resume__container {
    background-color: #e9ecf1;
}
.case-new .resume__container .main-title {
    color: #001e54;
    margin: 0;
    line-height: 1;
}
.case-new .resume__container .label {
    color: #979eac;
    font-size: 12px;
}
.case-new .resume__container .resume__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.case-new .resume__container .resume__divider {
    background-color: #979eac;
}

/* Selector de casos */
.floating-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 32px 80px;
    margin-bottom: 20px;
}
.floating-card:last-of-type {
    margin-bottom: 20px;
}
.floating-card h3 {
    color: #001e54;
    font-size: 20px;
    margin-top: 0;
}
.floating-card__upper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.floating-card__upper-heading {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.floating-card__upper-heading p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .floating-card {
        padding: 32px 40px;
    }
}
@media screen and (max-width: 480px) {
    .floating-card {
        padding: 32px 20px;
    }
}
.case-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}
@media (max-width: 768px) {
    .case-options {
        grid-template-columns: 1fr;
    }
}

.card__case {
    border: 1px solid #979eac;
    border-radius: 10px;
    padding: 24px;
    background-color: #ffffff;
    transition: all 0.2s;
    cursor: pointer;
    height: 220px;
}
.card__case img {
    height: 50px;
    transition: filter 0.2s;
    margin-bottom: 30px;
}
.card__case h4 {
    font-size: 16px;
    font-weight: 700;
    color: #001e54;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.card__case p {
    font-size: 14px;
    color: #979eac;
    line-height: 1.5;
    transition: color 0.2s;
}
.card__case:hover {
    border-color: #00b0ba;
}
.card__case.active {
    background-color: #00b0ba;
    border-color: #00b0ba;
}
.card__case.active h4,
.card__case.active p {
    color: #ffffff;
}
.card__case.active img {
    filter: brightness(0) invert(1);
}

.client-form {
    margin-top: 20px;
}
.client-form h4 {
    color: #001e54;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0;
}
.client-form .new-profile {
    width: 100%;
    border: 1px solid #d3d9e1;
    padding: 20px 60px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}
.client-form .new-profile .form-group {
    width: calc(50% - 20px);
}
.client-form .new-profile .delete-profile {
    display: flex;
    margin-left: auto;
    color: #00b0ba;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}
@media screen and (max-width: 768px) {
    .client-form .new-profile .form-group {
        width: 100%;
    }
}
.client-form .add-profile {
    color: #00b0ba;
    border-color: #00b0ba;
    margin-top: 20px;
    display: flex;
}

.registros-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 1rem;
}
.registros-container h4 {
    margin-bottom: 0px;
    color: #001e54;
    font-size: 16px;
}
@media (max-width: 768px) {
    .registros-container {
        grid-template-columns: 1fr;
    }
}

.registro-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.registro-item .outline-button {
    color: #00b0ba;
    border-color: #00b0ba;
    padding: 9px 42px;
}

.registro-preview {
    width: 80px;
    height: 80px;
    background-color: #f4f6fa;
    border-radius: 16px;
    flex-shrink: 0;
}

.registro-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.registro-info .registro-label {
    font-size: 16px;
    font-weight: 400;
    color: #001e54;
    margin: 0;
    line-height: 1;
}

.diagnostico-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.checkbox-grid label {
    display: flex;
    /*align-items: center;*/
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #001e54;
    margin-bottom: 10px;
}
.checkbox-grid label input[type=checkbox] {
    width: 20px;
    height: 20px;
    border: 2px solid #979eac;
    border-radius: 5px;
    background-color: #e9ecf1;
    cursor: pointer;
}
.checkbox-grid label input[type=checkbox]:checked {
    background-color: #00b0ba;
    border-color: #00b0ba;
}

.otros-textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #d3d9e1;
    background-color: #f4f6fa;
    font-size: 14px;
    color: #001e54;
    resize: vertical;
}
.otros-textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}
.otros-textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.consent-container {
    display: flex;
    flex-direction: column;

}

.consent-text {
    color: #979eac;
    font-size: 14px;
    line-height: 1.6;
    color: #979eac strong;
    color-color: #001e54;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #979eac;
}
.consent-checkbox input[type=checkbox] {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid #cbd2e0;
    background-color: #f4f6fa;
    cursor: pointer;
}
.consent-checkbox input[type=checkbox]:checked {
    background-color: #00b0ba;
    border-color: #00b0ba;
}

.consent-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    justify-content: center;
}
.consent-buttons .outline-button {
    color: #00b0ba;
    border-color: #00b0ba;
}
.consent-buttons .button {
    outline: none;
    border: none;
    background-color: #00b0ba;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.modal.active {
    display: flex;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 30, 84, 0.79);
}
.modal__content {
    position: relative;
    z-index: 2;
    background-color: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}
.modal__header {
    background-color: #f5f7fa;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal__header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #00113d;
    text-align: center;
    width: 100%;
}
.modal__header .modal__close {
    background: none;
    border: none;
    font-size: 24px;
    color: #00113d;
    cursor: pointer;
}
.modal__body {
    padding: 32px 24px;
    text-align: center;
}
.modal__body p {
    color: #00113d;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
}
.modal__body .modal__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.modal__body .modal__actions .button {
    background-color: #00b0ba;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.modal__body .modal__actions .outline-button {
    background: transparent;
    color: #00b0ba;
    border: 2px solid #00b0ba;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.session-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.session-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.session-card__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #d8f4f6;
    padding: 1rem;
    border-radius: 8px;
}
.session-card__left img {
    width: 32px;
    height: 32px;
}
.session-card__left .session-card__type {
    font-weight: 600;
    color: #00b0ba;
}
.session-card__status-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.session-card .label {
    font-size: 12px;
}
.session-card__status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.session-card__status .step {
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #999;
    background-color: #f2f2f2;
    font-weight: 500;
}
.session-card__status .step.active {
    background-color: #c6f6d5;
    color: #007f00;
}
.session-card__status .step-line {
    width: 24px;
    height: 2px;
    background-color: #e0e0e0;
}
.session-card__status .step-line.active {
    background-color: #c6f6d5;
}
.session-card__status .step-line.last {
    background-color: #e0e0e0;
}
.session-card__content {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d6deea;
    border-radius: 10px;
    padding: 1rem;
    flex-wrap: wrap;
    gap: 30px;
}
.session-card__info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.session-card__info .label {
    display: block;
    font-size: 0.75rem;
    color: #a0aab4;
    margin-bottom: 0;
}
.session-card__info .session-time {
    font-size: 1.125rem;
    font-weight: 400;
    color: #001e54;
}
.session-card__buttons {
    display: flex;
    gap: 1rem;
}
.session-card__buttons .button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}
.session-card__buttons .button--outline.error {
    background-color: transparent;
    border: 1px solid #f25c4c;
    color: #f25c4c;
}
.session-card__buttons .button--icon {
    background-color: #00a3b2;
    color: #fff;
    border: none;
}
.session-card__buttons .button .material-symbols-outlined {
    font-size: 1.25rem;
}

.diagnostico-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 30px;
}

.diagnostico-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.diagnostico-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00b0ba;
    color: white;
    font-size: 1rem;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    font-size: 20px !important;
}

.diagnostico-text {
    color: #001e54;
    font-weight: 400;
}

.comment-box {
    background-color: #eceff5;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}
.comment-box__title {
    font-weight: 600;
    color: #112244;
    margin-bottom: 1rem;
}
.comment-box__text {
    font-size: 1.1rem;
    color: #112244;
    margin-bottom: 1rem;
}
.comment-box__link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #00b3c7;
    font-weight: 500;
    text-decoration: none;
}
.comment-box__link:hover {
    text-decoration: underline;
}
.comment-box--success {
    border-left: 12px solid #94d35e;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.doubt-box {
    margin-bottom: 2rem;
}
.doubt-box__title {
    color: #001e54;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1rem;
}
.doubt-box__text {
    color: #001e54;
    line-height: 1.7;
}

.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.button-row__right {
    display: flex;
    gap: 1rem;
}
.button-row .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
}
.button-row .button .material-symbols-outlined {
    font-size: 1.25rem;
}
.button-row .button--outline {
    background-color: transparent;
    border: 1px solid #00b3c7;
    color: #00b3c7;
}
.button-row .button--icon {
    background-color: #00b3c7;
    color: #fff;
    border: none;
}
.button-row .button.error {
    border-color: #f25c4c;
    color: #f25c4c;
}

.mentoring-section {
    border-radius: 10px;
    text-align: center;
}
.mentoring-section__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001e54;
    margin-bottom: 0.5rem;
}
.mentoring-section__subtitle {
    font-size: 1rem;
    color: #979eac;
    margin-bottom: 1.5rem;
}
.mentoring-section__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.mentoring-tag {
    background-color: white;
    color: #001e54;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}
.mentoring-tag:hover {
    background-color: #f4f7fa;
}

.mentorias-list {
    margin-top: 20px;
}

.empty-state {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty-state p {
    font-size: 18px;
    font-weight: 700;
    color: #979eac;
}

.material-search-section {
    background-color: #edeff5;
    border-radius: 10px;
    padding: 2.5rem 1rem;
}
.material-search-section__wrapper {
    margin: 0 auto;
    text-align: center;
}
.material-search-section__title {
    color: #001e54;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 5px;
}
.material-search-section__subtitle {
    color: #979eac;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2rem;
    margin-top: 0;
}
.material-search-section__categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.material-search-section__filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.material-card {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    max-width: 210px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: 0.2s ease all;
}
.material-card img {
    height: 40px;
    margin-bottom: 0px;
}
.material-card p {
    color: #001e54;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0;
}
.material-card:hover {
    transform: translateY(-2px);
}

.material-filter {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.material-filter label {
    font-size: 0.75rem;
    font-weight: 400;
    color: #001e54;
    margin-bottom: 0.25rem;
    padding-left: 0.25rem;
}
.material-filter select {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    background-color: white;
    color: #112244;
    min-width: 300px;
}

.formacion-hero {
    position: relative;
    background-size: cover;
    background-position: right center;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px 40px;
    display: flex;
    align-items: center;
}
.formacion-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}
.formacion-hero__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.formacion-hero__title {
    font-size: 20px;
    font-weight: 400;
    color: #001e54;
    margin-bottom: 0.2rem !important;
    margin: 0;
}
.formacion-hero__subtitle {
    color: #a0aab4;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
}

/* Mi perfil */
.user-settings {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 20px;
}
.user-settings__left {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px 80px;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.user-settings__left select {
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #d3d9e1;
    background-color: #f4f6fa;
}
.user-settings__left .outline-button {
    border-color: #00b0ba;
    color: #00b0ba;
}
.user-settings__left .button {
    background-color: #00b0ba;
    margin-left: auto;
    margin-top: 40px;
}
.user-settings__right {
    flex: 1;
    max-width: 50%;
    padding: 20px 80px;
    margin-top: 40px;
}
.user-settings__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.user-settings__subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #001e54;
}
.user-settings__photo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.user-settings__photo .user-settings__avatar {
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-settings__photo .user-settings__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.user-settings__photo .user-settings__photo-upload {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}
.user-settings__photo .user-settings__photo-upload .user-settings__photo-label {
    font-size: 0.875rem;
    color: #001e54;
}
.user-settings__photo .user-settings__photo-upload .user-settings__file-input {
    padding: 0.5rem 1rem;
    border: 1px solid #d3d9e1;
    border-radius: 6px;
    background-color: #f4f6fa;
    font-size: 0.875rem;
    width: 100%;
    max-width: 400px;
}
.user-settings__btn, .user-settings__save {
    background-color: #00aebc;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    margin-top: 1rem;
    cursor: pointer;
}
.user-settings__note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
    line-height: 1.4;
}
.user-settings__card {
    background-color: #00aebc;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.user-settings .form-group input {
    color: #001e54;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
@media (min-width: 600px) {
    .form-row .form-group {
        flex: 1 1 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

.onboarding-label-2 {
    margin: 0;
}

.onboarding-label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    color: #00b0ba;
}

.onboarding-label-3 {
    margin: 0;
    width: 50%;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .user-settings__left,
    .user-settings__right {
        padding: 20px;
    }
}
@media screen and (max-width: 980px) {
    .user-settings__left,
    .user-settings__right {
        width: 100%;
        max-width: 100%;
    }
    .card-2 {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .card-2 .resume__divider {
        display: none;
    }
    .card-2 .resume__info {
        width: 100%;
    }
    .card-2 .resume__info.center {
        justify-content: flex-start;
    }
}
/* Mis facturas */
.order-history {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 40px;
    margin-bottom: 80px;
    overflow-x: auto;
}
.order-history__header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1.5fr;
    font-size: 12px;
    color: #001e54;
    padding-bottom: 30px;
    border-bottom: 2px solid #dde3eb;
    text-transform: uppercase;
    font-weight: 500;
    min-width: 1100px;
    gap: 10px;
}
.order-history__item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1.5fr;
    background-color: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f2f5;
    align-items: center;
    min-width: 1100px;
    gap: 10px;
}
.order-history__item:last-child {
    border-bottom: none;
}
.order-history__column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.order-history__column strong {
    font-size: 0.95rem;
    color: #1c2c4c;
    font-weight: 700;
}
.order-history__column small {
    font-size: 0.8rem;
    color: #777;
}
.order-history__status {
    background-color: #c4f4c8;
    color: #207b2f;
    font-size: 14px;
    padding: 0.4rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
}
.order-history__actions {
    display: flex;
    gap: 0.5rem;
}

/* Lista de casos */
.case-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #f5f7fa;
}
.case-filters .floating-card {
    width: 100%;
    background-color: #e9ecf1;
}
.case-filters .select-input {
    color: #001e54;
    background-color: white;
}
.case-filters__top {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 10px;
}
.case-filters__top .form-group {
    flex: 1 1 300px;
}
.case-filters__top .case-filters__search {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-width: 300px;
}
.case-filters__top .case-filters__search input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 0.9rem;
    background: transparent;
    color: #1c2c4c;
}
.case-filters__top .case-filters__search .material-symbols-outlined {
    color: #999;
    font-size: 1.25rem;
}
.case-filters__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.case-filters__bottom .form-group {
    flex: 1 1 200px;
}

.case-table {
    overflow-x: auto;
}
.case-table .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.case-table__table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
}
.case-table__table th,
.case-table__table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.9rem;
    white-space: nowrap;
}
.case-table__table th {
    padding-bottom: 30px;
}
.case-table__table thead th {
    color: #001e54;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-bottom: 2px solid #e3e7ec;
}
.case-table__table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.case-table__table tbody tr:hover {
    background-color: #f0f8fa;
}
.case-table__table tbody td {
    color: #1c2c4c;
    font-weight: 500;
}

.tag {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    color: #fff;
}
.tag--green {
    background-color: #36c688;
}
.tag--aqua {
    background-color: #b2ebf2;
    color: #007d8b;
}
.tag--orange {
    background-color: #ffcc80;
    color: #995c00;
}
.tag--gray {
    background-color: #dcdcdc;
    color: #666;
}

.case-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}
.case-type__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.case-type__dot.purple {
    background-color: #b35ff5;
}
.case-type__dot.dark {
    background-color: #1c1c1c;
}
.case-type__dot.blue {
    background-color: #5d87ff;
}
.case-type__dot.pink {
    background-color: #f062c0;
}
.case-type__dot.yellow {
    background-color: #ffc727;
}

.case-table__row--closed {
    opacity: 0.4;
}/*# sourceMappingURL=style.css.map */


.bc-calendar .bc-daynum {
    font-weight: 400;
    text-align: left;
}
.bc-calendar .bc-month-title {
    color: var(--primary-blue-color) !important;
    font-weight: 400;
}
.bc-calendar .bc-grid {
    gap: 0px !important;
}
.bc-calendar .bc-cell {
    border-radius: 0px !important;
}
.bc-calendar .bc-weekday {
    color: var(--primary-blue-color) !important;
    font-weight: 400;
    font-size: 11px;
    margin-bottom: 5px;
}
.bc-calendar .bc-event {
    margin-bottom: 10px;
}
.bc-calendar .bc-event-time {
    color: var(--primary-blue-color) !important;
    font-weight: 300 !important;
}
.bc-calendar .bc-event span {
    color: var(--primary-blue-color) !important;
    font-weight: 500;
}
