@media screen and (max-width: 479px) {
    body {
        background-image: url(../image/background.jpg);
        font-family: 'Outfit', sans-serif;
        margin: 0;
    }

    header {
        background-color: #f1f1f1;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    }

    img {
        max-width: 100%;
        height: auto;
    }

    a {
        text-decoration: none;
        color: #333;
    }

    form {
        width: 100%;
    }

    input,
    select {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        background-color: #ffffff;
        color: #333;
        width: 100%;
        height: 30px;
        line-height: 30px;
        border-radius: 5px;
        border: 2px solid #333;
        box-sizing: border-box;

    }

    button {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #008fe2;
        color: #fff;
        height: 30px;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    button:hover {
        background-color: #0f6da4;
    }

    .container {
        max-width: 350px;
        margin: auto;
    }

    .card {
        background-color: #fcf5ef;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        padding: 24px;
    }

    .input-field {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .btn {
        font-family: 'Outfit', sans-serif;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #008fe2;
        color: #fff;
        height: 25px;
        line-height: 25px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    /* ::::::::::::: CSS LOGIN ::::::::::::::::*/

    .login-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ._cardLogin {
        text-align: center;
        position: relative;
        top: 15rem;
    }

    ._card-contentLogin {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .imgLogin {
        width: 85%;
        margin: 8px 0;
    }

    .rowLogin {
        padding-bottom: 5px;
    }

    .inputLogin {
        width: 85%;
    }

    .btn-login {
        font-size: 10px;
        height: 25px;
        line-height: 25px;
        padding: 0 16px;
        margin-bottom: 10px;
    }

    .error-message {
        display: inline-block;
        font-size: 12px;
        color: #ff0000;
    }

    /*::::::::::::::: CSS NAVBAR :::::::::::::::*/
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .brand-logo {
        width: 45%;
        padding-top: 5px;
    }

    .svg-mobileIcon {
        display: inline-block;
    }

    .svg-menuNavBar {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 2px;
    }

    ._hoverSVG {
        transition: transform 0.3s ease;
    }

    ._hoverSVG:hover {
        transform: scale(1.15);
    }

    .link-menuNavBar {
        display: none;
        font-size: 15px;
        font-weight: 600;
    }

    ._chevronSVG {
        width: 16px;
        height: 16px;
        vertical-align: middle;
        margin-bottom: 2px;
    }

    .dropdown-menu {
        visibility: hidden;
        position: absolute;
        top: 5%;
        left: 5%;
        background-color: #fff;
        width: 160px;
        border-radius: 8px;
        z-index: 9999;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        opacity: 0;
        /* Oculto por defecto */
        transform: scale(0.95);
        /* Ligeramente contraído */
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: normal;
        justify-content: left;
        gap: .8rem;
        padding: 15px;
    }

    .show {
        visibility: visible;
        flex-direction: column;
        opacity: 1;
        /* Visible */
        transform: scale(1);
        /* Tamaño normal */
    }

    .closing {
        opacity: 0;
        /* Animación de salida */
        transform: scale(0.95);
        /* Ligeramente contraído */
        visibility: hidden;
        /* Ocultar al final de la transición */
    }

    .dropdown-items {
        font-size: 15px;
        font-weight: 600;
        height: 30px;
        line-height: 30px;
        transition: all 0.3s ease;
    }

    .dropdown-items:hover {
        background-color: #e6e6e6;
        color: #14aee4;
        padding: 0 5px;
        border-radius: 5px;
    }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
    body {
        background-image: url(../image/background.jpg);
        font-family: 'Outfit', sans-serif;
        margin: 0;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    form {
        width: 100%;
    }

    input,
    select {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        background-color: #ffffff;
        color: #333;
        width: 100%;
        height: 35px;
        line-height: 35px;
        border-radius: 5px;
        border: 2px solid #333;
        box-sizing: border-box;

    }

    button {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #008fe2;
        color: #fff;
        height: 30px;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    button:hover {
        background-color: #0f6da4;
    }

    .container {
        max-width: 680px;
        margin: auto;
    }

    .card {
        background-color: #fcf5ef;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        padding: 24px;
    }

    .input-field {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .btn {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #008fe2;
        color: #fff;
        height: 30px;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    /* ::::::::::::: CSS LOGIN ::::::::::::::::*/

    .login-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ._cardLogin {
        text-align: center;
        position: relative;
        top: 20rem;
        width: 70%;
    }

    ._card-contentLogin {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .imgLogin {
        width: 75%;
        margin: 8px 0;
    }

    .rowLogin {
        padding-bottom: 5px;
    }

    .inputLogin {
        width: 70%;
    }

    .btn-login {
        font-size: 12px;
        height: 30px;
        line-height: 30px;
        padding: 0 16px;
        margin-bottom: 10px;
    }

    .error-message {
        display: inline-block;
        font-size: 12px;
        color: #ff0000;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    body {
        background-image: url(../image/background.jpg);
        background-size: auto;
        font-family: 'Outfit', sans-serif;
        margin: 0;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    form {
        width: 100%;
    }

    input,
    select {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        background-color: #ffffff;
        color: #333;
        width: 100%;
        height: 35px;
        line-height: 35px;
        border-radius: 5px;
        border: 2px solid #333;
        box-sizing: border-box;

    }

    button {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #008fe2;
        color: #fff;
        height: 30px;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    button:hover {
        background-color: #0f6da4;
    }

    .container {
        max-width: 680px;
        margin: auto;
    }

    .card {
        background-color: #f1f1f1;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        padding: 24px;
    }

    .input-field {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .btn {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #008fe2;
        color: #fff;
        height: 30px;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    /* ::::::::::::: CSS LOGIN ::::::::::::::::*/

    .login-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        top: 20rem;
    }

    ._cardLogin {
        text-align: center;
        width: 70%;
    }

    ._card-contentLogin {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .imgLogin {
        width: 75%;
        margin: 8px 0;
    }

    .rowLogin {
        padding-bottom: 5px;
    }

    .inputLogin {
        width: 70%;
    }

    .btn-login {
        font-size: 12px;
        height: 30px;
        line-height: 30px;
        padding: 0 16px;
        margin-bottom: 10px;
    }

    .error-message {
        display: inline-block;
        font-size: 12px;
        color: #ff0000;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    body {
        background-image: url(../image/background.jpg);
        font-family: 'Outfit', sans-serif;
        margin: 0;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    form {
        width: 100%;
    }

    input,
    select {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        background-color: #ffffff;
        color: #333;
        width: 100%;
        height: 35px;
        line-height: 35px;
        border-radius: 5px;
        border: 2px solid #333;
        box-sizing: border-box;

    }

    button {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #008fe2;
        color: #fff;
        height: 30px;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    button:hover {
        background-color: #0f6da4;
    }

    .container {
        max-width: 680px;
        margin: auto;
    }

    .card {
        background-color: #fcf5ef;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        padding: 24px;
    }

    .input-field {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .btn {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #008fe2;
        color: #fff;
        height: 30px;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    /* ::::::::::::: CSS LOGIN ::::::::::::::::*/

    .login-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        top: 20rem;
    }

    ._cardLogin {
        text-align: center;
        width: 70%;
    }

    ._card-contentLogin {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .imgLogin {
        width: 75%;
        margin: 8px 0;
    }

    .rowLogin {
        padding-bottom: 5px;
    }

    .inputLogin {
        width: 70%;
    }

    .btn-login {
        font-size: 12px;
        height: 30px;
        line-height: 30px;
        padding: 0 16px;
        margin-bottom: 10px;
    }

    .error-message {
        display: inline-block;
        font-size: 12px;
        color: #ff0000;
    }
}

@media screen and (min-width: 1200px) {
    body {
        background-image: url(../image/background.jpg);
        font-family: 'Outfit', sans-serif;
        margin: 0;
    }

    header {
        background-color: #fcf5ef;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.2rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    a {
        text-decoration: none;
        color: #333;
    }

    form {
        width: 100%;
    }

    input,
    select {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        background-color: #ffffff;
        color: #333;
        width: 100%;
        height: 40px;
        line-height: 40px;
        border-radius: 5px;
        border: 2px solid #333;
        box-sizing: border-box;

    }

    dialog {
        width: 55%;
        opacity: 0;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        padding: 24px;
        background-color: #fcf5ef;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-60px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    dialog.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    button {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #0cc578;
        color: #fff;
        height: 30px;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    button:hover {
        background-color: #2ee096;
    }

    hr {
        border: 1px solid #acacac;
        margin: 15px 0px;
    }

    .container {
        max-width: 1200px;
        margin: auto;
    }

    .card {
        background-color: #fcf5ef;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        padding: 24px;
    }

    .input-field {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .btn {
        display: inline-block;
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        background-color: #0cc578;
        color: #fff;
        height: 30px;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: all 0.2s ease-out;
    }

    /* ::::::::::::: CSS LOGIN ::::::::::::::::*/

    .login-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ._cardLogin {
        text-align: center;
        position: absolute;
        top: 25%;
        width: 35%;
    }

    ._card-contentLogin {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .imgLogin {
        width: 85%;
        margin: 8px 0;
    }

    .rowLogin {
        padding-bottom: 5px;
    }

    .inputLogin {
        width: 85%;
    }

    .btn-login {
        font-size: 13px;
        height: 32px;
        line-height: 32px;
        padding: 0 22px;
        margin-bottom: 10px;
    }

    .error-message {
        display: inline-block;
        font-size: 12px;
        color: #ff0000;
    }

    /*::::::::::::::: CSS NAVBAR :::::::::::::::*/
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .brand-logo {
        width: 15%;
        padding-top: 5px;
    }

    .svg-mobileIcon {
        display: none;
    }

    .svg-menuNavBar {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 2px;
    }

    ._hoverSVG {
        transition: transform 0.3s ease;
    }

    ._hoverSVG:hover {
        transform: scale(1.1);
    }

    .link-menuNavBar {
        font-size: 15px;
        font-weight: 600;
    }

    ._chevronSVG {
        width: 16px;
        height: 16px;
        vertical-align: middle;
        margin-bottom: 2px;
    }

    .dropdown-menu {
        visibility: hidden;
        position: absolute;
        top: 6%;
        right: 5rem;
        background-color: #fcf5ef;
        width: 160px;
        border-radius: 8px;
        z-index: 9999;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        opacity: 0;
        /* Oculto por defecto */
        transform: scale(0.95);
        /* Ligeramente contraído */
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: normal;
        justify-content: left;
        gap: .8rem;
        padding: 15px;
    }

    .show {
        visibility: visible;
        flex-direction: column;
        opacity: 1;
        /* Visible */
        transform: scale(1);
        /* Tamaño normal */
    }

    .closing {
        opacity: 0;
        /* Animación de salida */
        transform: scale(0.95);
        /* Ligeramente contraído */
        visibility: hidden;
        /* Ocultar al final de la transición */
    }

    .dropdown-items {
        font-size: 15px;
        font-weight: 600;
        height: 30px;
        line-height: 30px;
        transition: all 0.3s ease;
    }

    .dropdown-items:hover {
        background-color: #e6e6e6;
        color: #19b96d;
        padding: 0 5px;
        border-radius: 5px;
    }

    /* ::::::::::::::::: TOOLS PANELES ::::::::::::::::*/
    .Titles {
        font-size: 2.8rem;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        margin: 0;
    }

    /*:::::::::::::::: COLUMNAS :::::::::::::::::::*/
    .col {
        display: grid;
        align-items: center;
    }

    ._col3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        ;
    }

    /*:::::::::::::: DIALOG  ::::::::::::::*/
    .button-close {
        float: right;
        margin-top: -4%;
        margin-right: -4%;
    }

    .svg-closeModal {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    ._modalTitle {
        padding-top: 5px;
        padding-bottom: 10px;
        font-weight: 800;
    }

    /*::::::::::::::::::: REGISTRO PACIENTE ::::::::::::::::*/
    .tabs {
        display: flex;
        justify-content: space-between;
        background-color: #f1f1f1;
        margin: 0;
        padding: 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .svg-tabs {
        width: 30px;
        height: 29px;
        vertical-align: middle;
        margin-bottom: 5px;
    }

    .tab {
        flex: 1;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        padding: 10px 10px;
        cursor: pointer;
        background-color: #ffead8;
        border: none;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .tab.active {
        background-color: #ffffff;
        color: #1ec178;
        border-bottom: 3px solid #1ec178;
    }

    /*:::::::::::::::::::: CALENDAR :::::::::::::::::::::*/
    ._titleCalendarInit {
        font-weight: 800;
        padding-top: 10px;
    }
    .calendar {
        background-color: #fcf5ef8c;
        border-radius: 8px;
        padding: 24px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    ._titleMonthYears {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1ec178;
    }

    .svg-calendar-arrow {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 2px;
    }

    .calendar-header {
        display: flex;
        align-items: center;
        justify-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        border-bottom: 1px solid #333;
    }

    ._btn-arrows {
        background-color: #1ec178;
        padding: 3px 5px;
        height: auto;
    }

    ._btn-arrows:hover {
        background-color: #2ee096;
    }

    .calendar-consults {
        display: flex;
        gap: 5px;
        margin: 0 25rem;
    }

    ._selectCalendar {
        width: auto;
        height: 38px;
        line-height: 38px;
    }
    .calendar-grid { 
        display: grid; 
        grid-template-columns: repeat(7, 1fr); 
        gap: 0px;
        padding-top: 10px; 
    }

    .day-name, .day { 
        text-align: center; 
        padding: 10px 0;
    }

    .day-name { 
        font-weight: bold; 
        text-transform: uppercase;
        background: #fbeadc;
    }

    .day { 
        background: #fafafa; 
        border: 1px solid #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .day:hover { 
        font-weight: 600;
        background: #e6e6e6; 
        color: #1ec178; 
    }

    .day.empty { 
        background: transparent; 
        border: none; 
        cursor: default; 
    }

    .day span.today {
        display: inline-block;
        background-color: #27ae60;
        color: #fff;
        border-radius: 25px;
        padding: 4px 8px;
        font-size: 12px;
        font-weight: 800;
    }

    #appointmentModal {
        width: 30%;
        text-align: center;
    }

    ._colDateInfo {
        grid-template-columns: 1fr 1.2fr;
        gap: 1rem;
        padding-bottom: 10px;
    }

    .input-calendar {
        font-size: 15px;
        height: 35px;
        line-height: 35px;
        border: 2px solid #e89f61;
    }

    .dateTextInfo {
        font-weight: 600;
        text-align: left;
        margin: 0;
    }

    ._colDataAppointmentInfo {
        grid-template-columns: 1.8fr 1fr;
        gap: 10px;
        padding-bottom: 10px;
    }

    .appointment-badge {
        display: block;
        font-size: 10px;
        background-color: #28a745;
        color: white;
        border-radius: 3px;
        padding: 2px 6px;
        margin-top: 4px;
        margin-left: 5px;
        margin-right: 5px;
        cursor: pointer;
    }
    /*.calendar-container { max-width: 600px; margin: auto; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px #ccc; }
    .calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; flex-wrap: wrap; gap: 10px; }
    .calendar-header .controls a { text-decoration: none; background: #007BFF; color: white; padding: 5px 10px; border-radius: 5px; margin: 0 5px; }
    .calendar-header select { padding: 5px; }
    .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
    .day-name, .day { text-align: center; padding: 10px 0; }
    .day-name { font-weight: bold; background: #e9e9e9; }
    .day { background: #fafafa; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; }
    .day.empty { background: transparent; border: none; cursor: default; }*/
}