﻿@import url('font/quicksand.css');
@import url('font/poppins.css');

html {
    position: relative;
    min-height: 100%;
}

body {
    height: 100%; /* Establece la altura del html y el body al 100% */
    margin: 0; /* Elimina el margen predeterminado */
}

form {
    width: 100%;
}

.container {
    max-width: none; 
    max-height: 100%;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}


.pricing-header {
    max-width: none; /*700px;*/
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}




.form-group.row > .col-form-label {
    text-align: right;
}


.top-bar {
    height: 84px;
    background-color: #0099a8; /*teal;*/
    object-fit: contain;
    display: flex;
    align-items: stretch;
    /* padding: 0 3rem; */
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/* Left section = same width as sidebar */
.topbar-left {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    /*background-color: white;*/
}

    .topbar-left img {
        max-height: 2.5rem; /* control logo size */
    }

/* Adjust icon size */
.exit-icon {
    width: 40%;
    height: auto; /* keeps aspect ratio */
}

/* Center section */
.topbar-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center; /* 🔥 center vertically */
    gap: 2rem;
    font-weight: bold;
}

/* Right section */
.topbar-right {
    min-width: 5rem;
    display: flex;
    justify-content: center;
    align-items: center; /* 🔥 center vertically */
    font-weight: bold;
    cursor: pointer;
}


.logo {
    display: flex;
}

    .logo > img {
        margin-right: 3rem;
        width: 9rem;
    }

.content {
    display: flex;
    height: 100%;
    z-index: 1;
    background-color: #eff3f6;
}

.main {
    display: grid;
    flex-grow: 1;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    overflow-y: auto;
    background: linear-gradient(rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 80%);
    padding: 1.5rem !important;
    height: 100vh;
}

.nav-tab {
    margin: 0;
    padding: 0.3rem 1.8rem;
    display: inline-block;
    background-color: lightsteelblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    position: relative;
    text-transform: uppercase;
    transition: 0.2s ease-out;
}

    .nav-tab:hover {
        color: white;
        text-decoration: none;
        background-color: rgba(255,255,255,0.3);
    }

    .nav-tab.active {
        background-color: rgba(255,255,255,0.2);
        color: #fff2cc;
    }

    .nav-tab img {
        height: 2rem;
        margin-bottom: 0.25rem;
    }

    .nav-tab.active img {
        filter: brightness(0) saturate(100%) invert(93%) sepia(18%) saturate(797%) hue-rotate(316deg) brightness(109%) contrast(101%);
    }

    .nav-tab.active:after {
        content: "";
        position: absolute;
        bottom: -1rem;
        z-index: 1;
        width: 0px;
        height: 0px;
        border-left: 0.6rem solid transparent;
        border-right: 0.6rem solid transparent;
        border-top: 1rem solid rgb(205,51,51);
    }

.nav-link {
    font-size: 18px; /* adjust as needed */
}

.user-info {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

    .user-info img {
        margin-right: 0.7rem;
        width: 2.6rem;
    }

    .user-info .username {
        display: block;
        font-weight: 700;
        line-height: 0.7rem;
        margin-top: 0.5rem;
        color: #0099a8;
        font-size: 1rem;
    }

    .user-info a {
        color: #fff2cc;
        font-size: 0.8rem;
    }

    .user-info button.sign-out {
        color: #0099a8;
        font-size: 0.8rem;
        padding: 0;
    }

.therapy-cards {
    display: grid;
    grid-template-columns: repeat(2, 19rem);
    grid-gap: 5rem;
    justify-content: center;
    padding: 0;
}

    .therapy-cards > li {
        padding: 0;
        height: 19rem;
        width: auto;
        position: relative;
        background-size: cover;
        border-radius: 0.5rem;
        list-style-type: none;
        transition: 0.1s ease-out;
    }

        .therapy-cards > li:hover {
            transform: scale(1.02);
        }

.therapy-info {
    border-radius: 0.5rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.7) 30%, rgba(0,0,0,0) 80%);
    padding: 1rem 1rem;
    color: #fff2cc;
    cursor: pointer;
    text-shadow: 0 2px 2px rgba(0,0,0,0.5);
    line-height: 1.25rem;
}

    .therapy-info .title {
        color: white;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        vertical-align: middle;
        margin: 0.2rem 0 0.4rem 0;
        font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
        text-transform: uppercase;
    }

    .therapy-info .price {
        position: absolute;
        bottom: 0.5rem;
        right: 1rem;
        font-size: 1.5rem;
        font-weight: 700;
        padding: 0rem 0.7rem;
        border-radius: 4px;
        background-color: #08af08;
        color: white;
        line-height: 2rem;
    }

.price::before {
    content: '£';
    font-weight: 300;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.order-contents {
    overflow-y: auto;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex-grow: 1;
}

    .order-contents h2 {
        color: #fff2cc;
        font-size: 1.3rem;
        font-weight: 300;
        margin-bottom: 1rem;
        font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
        text-transform: uppercase;
    }

.order-total {
    background-color: rgb(191, 52, 52);
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 0 1.5rem;
}

.order-total.hidden {
    transform: translate3d(0, 4rem, 0);
}

    .order-total .total-price {
        font-weight: 700;
        font-size: 1.5rem;
    }

        .order-total .total-price::before {
            content: '£';
            font-weight: 300;
            margin: 0 0.1rem 0 0.4rem;
        }

    .order-total .btn {
        margin-left: auto;
        font-weight: 700;
        border-radius: 20px;
        padding: 0.4rem 1.2rem;
    }

.checkout-button {
    margin: auto;
    display: block;
    font-weight: 700;
    border-radius: 20px;
    padding: 0.4rem 1.2rem;
}

.cart-item {
    background-color: #333333;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-weight: 100;
    margin-top: 1rem;
    position: relative;
}

    .cart-item .title {
        font-weight: 700;
    }

    .cart-item ul {
        padding: 0;
        margin: 0.4rem 0.6rem;
    }

    .cart-item li {
        list-style-type: none;
        margin-left: 0rem;
        font-size: 0.8rem;
    }

.empty-cart {
    text-align: center;
    margin: auto;
    font-size: 1.5rem;
    font-weight: 100;
    color: #676767;
}

.item-price {
    font-weight: 500;
}

    .item-price::before {
        content: '£';
        font-weight: 100;
        margin-right: 0.3rem;
    }

.delete-item {
    position: absolute;
    top: 0;
    right: 0;
    content: 'X';
    cursor: pointer;
    color: #fff2cc;
    width: 2rem;
    height: 2rem;
    text-align: center;
}

    .delete-item:hover {
        text-decoration: none;
        color: #fff2cc;
        background-color: rgba(255,255,255,0.1);
    }

.configured-pizza-item {
    display: flex;
    flex-direction: row;
}

.dialog-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    animation: dialog-container-entry 0.2s;
}

@keyframes dialog-container-entry {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dialog {
    background-color: white;
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    z-index: 2000;
    align-self: center;
    margin: auto;
    width: 700px;
    max-height: calc(100% - 3rem);
    animation: dialog-entry 0.4s;
    animation-timing-function: cubic-bezier(0.075, 0.820, 0.165, 1.000);
}

@keyframes dialog-entry {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateX(0px) scale(1.0);
    }
}

.dialog-title {
    background-color: #444;
    color: #fff2cc;
    padding: 1.3rem 2rem;
}

    .dialog-title h2 {
        color: white;
        font-size: 1.4rem;
        margin: 0;
        font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        line-height: 1.3rem;
    }

.dialog-body {
    flex-grow: 1;
    padding: 0.5rem 3rem 1rem 0;
}

.dialog-buttons {
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background-color: #eee;
    padding: 0 1rem;
}

    .dialog-body > div {
        display: flex;
        margin-top: 1rem;
        align-items: center;
    }

    .dialog-body label {
        text-align: right;
        width: 200px;
        margin: 0 1.5rem;
    }

    .dialog-body input, .dialog-body select {
        flex-grow: 1;
        width: unset;
    }

    .dialog-body .size-label {
        min-width: 110px;
        text-align: right;
    }

.dialog .toppings {
    text-align: center;
    display: block;
    padding-left: 4rem;
}

.dialog .topping {
    display: inline-block;
    background-color: #a04343;
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 2rem;
    margin: 0.4rem 0.3rem;
    font-weight: 700;
}

.dialog .topping-price {
    font-weight: 100;
    font-size: 0.8rem;
}

.dialog .topping-price::before {
    content: '£';
}

.delete-topping {
    background: none;
    border: none;
    color: white;
    padding: 0.2rem 0.2rem 0.3rem 0.2rem;
    cursor: pointer;
}

.delete-topping:hover {
    color: yellow;
}

.form-message {
    padding: 0.5rem;
    font-weight: 700;
}

.dialog .price {
    font-weight: 700;
    font-size: 1.5rem;
}

.orders-list .list-group-item {
    display: flex;
}

.orders-list .col {
    margin: auto;
}

.orders-list h5 {
    color: #c03939;
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0.2rem 0 0 0;
    font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.track-order {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .track-order > div {
        overflow-y: hidden;
    }

.track-order-title {
    background-color: #eee;
    display: flex;
    align-items: center;
    padding: 1rem 3rem;
}

    .track-order-title h2 {
        color: #c03939;
        font-size: 1.3rem;
        font-weight: 300;
        margin: 0rem;
        font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
        text-transform: uppercase;
    }

.track-order-body {
    flex-grow: 1;
    display: flex;
}

.track-order-details {
    overflow-y: auto;
    padding: 1.5rem 3rem;
    flex-grow: 1;
}

.track-order-map {
    width: 350px;
    flex-shrink: 0;
}

a.sign-in {
    background: none;
    border: 1.5px solid white;
    border-radius: 0.7em;
    color: white;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem 0.1rem 0.8rem;
    font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
    font-weight: 100;
    cursor: pointer;
    transition: 0.2s ease-out;
    margin-left: 3px;
}

    a.sign-in:hover {
        background-color: rgba(255,255,255,0.3);
        color: #fff2cc;
        border-color: #fff2cc;
    }

input[type=range] {
    -webkit-appearance: none;
    margin: 7.1px 0;
    height: 21px;
}

    input[type=range]:focus {
        outline: none;
    }

    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 5.8px;
        cursor: pointer;
        box-shadow: 0px 0px 1px #000000, 0px 0px 0px #0d0d0d;
        background: #dcdcdc;
        border-radius: 1.3px;
        border: 0px solid #010101;
    }

    input[type=range]::-webkit-slider-thumb {
        box-shadow: 0.9px 0.9px 1px rgba(0, 0, 49, 0.43), 0px 0px 0.9px rgba(0, 0, 75, 0.43);
        border: 0px solid #00001e;
        height: 20px;
        width: 20px;
        border-radius: 10px;
        background: #d45352;
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -7.1px;
    }

    input[type=range]:focus::-webkit-slider-runnable-track {
        background: #e1e1e1;
    }

    input[type=range]::-moz-range-track {
        width: 100%;
        height: 5.8px;
        cursor: pointer;
        box-shadow: 0px 0px 1px #000000, 0px 0px 0px #0d0d0d;
        background: #dcdcdc;
        border-radius: 1.3px;
        border: 0px solid #010101;
    }

    input[type=range]::-moz-range-thumb {
        box-shadow: 0.9px 0.9px 1px rgba(0, 0, 49, 0.43), 0px 0px 0.9px rgba(0, 0, 75, 0.43);
        border: 0px solid #00001e;
        height: 20px;
        width: 20px;
        border-radius: 10px;
        background: #d45352;
        cursor: pointer;
    }

    input[type=range]::-ms-track {
        width: 100%;
        height: 5.8px;
        cursor: pointer;
        background: transparent;
        border-color: transparent;
        color: transparent;
    }

    input[type=range]::-ms-fill-lower {
        background: #d7d7d7;
        border: 0px solid #010101;
        border-radius: 2.6px;
        box-shadow: 0px 0px 1px #000000, 0px 0px 0px #0d0d0d;
    }

    input[type=range]::-ms-fill-upper {
        background: #dcdcdc;
        border: 0px solid #010101;
        border-radius: 2.6px;
        box-shadow: 0px 0px 1px #000000, 0px 0px 0px #0d0d0d;
    }

    input[type=range]::-ms-thumb {
        box-shadow: 0.9px 0.9px 1px rgba(0, 0, 49, 0.43), 0px 0px 0.9px rgba(0, 0, 75, 0.43);
        border: 0px solid #00001e;
        height: 20px;
        width: 20px;
        border-radius: 10px;
        background: #d45352;
        cursor: pointer;
        margin-top: 0;
    }

.checkout-cols {
    display: flex;
}
    .checkout-cols h4 {
        margin-bottom: 1.5rem;
    }

    .checkout-cols > div {
        flex: 1;
        margin: 1rem;
        border: 1px solid #ddd;
        background: rgba(255,255,255,0.3);
        padding: 1.25rem 1rem;
    }

        .checkout-cols > div:first-child {
            margin-left: 0;
        }

        .checkout-cols > div:last-child {
            margin-right: 0;
        }

.loading-bar {
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 250px);
    width: 500px;
    height: 6px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2)
}

    .loading-bar::after {
        content: '';
        display: block;
        width: 200px;
        height: 100%;
        background-color: #dc105a;
        animation: progressbar-slide 1s infinite;
        animation-timing-function: ease-in-out;
    }

.form-field {
    display: flex;
    margin: 0.5rem;
}

    .form-field > label {
        width: 8rem;
    }

    .form-field > div {
        flex-grow: 1;
    }

    .form-field input {
        width: 100%;
    }

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@keyframes progressbar-slide {
    0% {
        transform: translateX(-200px);
    }

    70% {
        transform: translateX(500px);
    }

    100% {
        transform: translateX(500px);
    }
}

.spinner {
    position: absolute;
    top: calc(50% - 30px);
    left: 50%;
    background-color: white; 
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.TRATAMIENTO-SEMIDIRI {
    margin-top: 2em;
    width: auto;
    height: 25.3px;
    font-family: Poppins;
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: -0.49px;
    color: #484c4c;
}

.Selecciona-y-rellena {
    width: 649px;
    height: 34px;
    font-family: Poppins;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: -0.49px;
    color: #484c4c;
}

.TRATAMIENTO-SEMIDIRI + .Selecciona-y-rellena {
    margin-top: 2em;
}
.Seleccion-sexo {
    margin-top: 4em;
    width: 649px;
    height: 34px;
    font-family: Poppins;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: -0.49px;
    color: #7a7e87;
}

    .Selecciona-y-rellena + .Seleccion-sexo {
        margin-top: 4em;
    }
.parameters {
    background-color: white;
    width: 100%;
}

.topnav-right {
    float: right;
}



.iast-info {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

    .iast-info img {
        margin-right: 0.7rem;
        width: 2.6rem;
    }

    .iast-info .description {
        display: block;
        font-weight: 700;
        line-height: 0.7rem;
        margin-top: 0.5rem;
        color: white;
        font-size: 1rem;
    }

    .iast-info a {
        color: #fff2cc;
        font-size: 0.8rem;
    }

    .iast-info .concepts {
        color: #fff2cc;
        font-size: 0.8rem;
        padding: 0;
    }

.QU-ES- {
    width: 105px;
    height: 19px;
    font-family: Poppins;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: center;
    color: white;
}


.sidebar {
    margin-top: 84px;
    width: 20rem;
    min-width: 20rem;
    display: flex;
    flex-direction: column;
    background-color: #485461;
    background-image: linear-gradient(315deg, #485461 0%, #28313b 74%);
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/
}

    .sidebar .top-row {
        background-color: rgba(0,0,0,0.4);
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

.nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .nav-item a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}


@media (max-width: 767.98px) {
    .main .top-row {
        display: none;
    }
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 500px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}



.caption {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
}


.Group-7 {
    position: relative;
    width: 100%;
    display: inline;
    float: left;
}


.ChangeMargin {
    margin-top: 20px;
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem !important;
}

.Mediante-inteligenci {
    margin-top: 6%;
    color: white;
    /*display: inline-block;*/
    vertical-align: middle;
    width: 100%;
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.39);
    position: absolute;
    /*font-family: CenturyGothic;*/
    font-size: 41px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.51;
    letter-spacing: normal;
    text-align: center;
    color: white;
}


.iAST-es-una-herramie {
    margin-top: 6%;
    /*font-family: CenturyGothic;*/
    font-size: 23px;
    width: 100%;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.65;
    letter-spacing: normal;
    text-align: justify;
    color: #484c4c;
}

    .iAST-es-una-herramie .text-style-1 {
        font-weight: normal;
    }


.Group-2 {
    position: relative;
    width: 100%;
    display: inline;
    float: left;
}

.iast-aporta-valor-pa {
    margin-top: 6%;
    width: 100%;
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.39);
    position: absolute;
    /*font-family: CenturyGothic;*/
    font-size: 41px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.51;
    letter-spacing: normal;
    text-align: center;
    vertical-align: middle;
    color: white;
}

.Tres-momentos-clave {
    width: 100%;
    /*font-family: CenturyGothic;*/
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #484c4c;
}

.La-mortalidad-infecc {
    width: 100%;
    /*font-family: CenturyGothic;*/
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.65;
    letter-spacing: normal;
    text-align: justify;
    color: #484c4c;
}


.no-pretende-actuar-s {
    width: 100%;
    /*font-family: CenturyGothic;*/
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    text-align: justify;
    color: teal;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.Tratamiento-descripcion {
    /*font-family: CenturyGothic;*/
    font-size: 34px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: justify;
    color: white;
    background-image: linear-gradient(116deg, #00cfe4 28%, #0099a8 53%, #006f7a 71%);
}


.Tratamiento-concepto {
    /*font-family: CenturyGothic;*/
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.87;
    letter-spacing: normal;
    text-align: justify;
    color: #484c4c;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: scroll;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
}



.login_page {
    /* The image used */
    background-image: url("/img/login.png");
    /* Full height */
    /*height: 100vh;
    width: 100vw;*/
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0rem;
}

/* Customize the selected item background and text */
.custom-selectbar {
    --rz-selectbar-item-selected-background: #007bff; /* blue background */
    --rz-selectbar-item-selected-color: white; /* white text */
    --rz-selectbar-item-focus-outline: none; /* remove focus outline */
}

    /* Optional: remove the green rectangle entirely */
    .custom-selectbar .rz-selectbar-item:focus {
        outline: none !important;
        box-shadow: none !important;
    }

.menu-buttons {
    
    /*display: flex*/;
    /*flex-wrap: wrap;*/ /* allows wrapping into rows */
    /*align-items: center;*/ /* Vertical center */
    gap: 20px; /* spacing between buttons */
    justify-content: center; /* or center if you want them centered */
    margin-left: 25%; /* space from left */
    margin-right: 25%; /* space from right */

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(5, auto); /* 5 rows */
}


/* Button styling */
.menu-button {
    position: relative; /* allows absolute positioning inside */
    margin-top: 10%; /* adjust to the height of your top bar */
    display: flex;
    /*flex-grow: 1;*/
    align-items: center;
    border-radius: 20px;
    padding: 1.0rem !important;
    /*padding: 12px 20px;*/
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    justify-content: center;
    height: auto; /* let height fit content */
    width: auto; /* let width fit content */
}

    /* The top-right corner image */
    .menu-button .corner-icon {
        position: absolute;
        top: 8px; /* más arriba */
        right: 8px; /* más a la derecha */
        width: 32px;
        height: 32px;
        pointer-events: none;
    }

    .menu-button span {
        font-size: 1.4rem;
        font-weight: 500;
        border-left: 1px solid white;
        padding-left: 10px;
        flex: 1; /* This ensures the span takes remaining space consistently */
    }

    .menu-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .menu-button span {
        font-size: 1.4rem; /* adjust as needed */
        font-weight: 500; /* keeps it bold */
        border-left: 1px solid white; /* vertical line */
        padding-left: 10px; /* space after line */
    }

/* Icon circle */
.icon-circle {
    /*background: white;*/
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin-right: 15px;
    /*box-shadow: 0 2px 6px rgba(0,0,0,0.2);*/
    overflow: hidden;
}

    .icon-circle img {
        width: 60%;
        height: auto;
    }

/* Gradient backgrounds */
.gradient-iast {
    background: #0099a8;
}

.gradient-blue {
    background: linear-gradient(90deg, #0099a8, #00b8c4);
}

.gradient-red {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
}

.gradient-purple {
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
}

.gradient-pink {
    background: linear-gradient(90deg, #ff6a00, #ee0979);
}

.gradient-orange {
    background: linear-gradient(90deg, #f7971e, #ffd200);
}

.gradient-green {
    background: linear-gradient(90deg, #56ab2f, #a8e063);
}

.gradient-alerts {
    background: #F6C6AD;
}

.gradient-ddd {
    background: #66C2CB;
}

.gradient-customization {
    background: #AEAEAE;
}

.gradient-reports {
    background: #66C2CB;
}

#chart-container {
    overflow: visible !important;
}

.menu-button.disabled {
    pointer-events: none; /* Prevent clicks */
    opacity: 0.5; /* Dim it visually */
    cursor: not-allowed; /* Show disabled cursor */
}

.nav-link.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

    .pagination span {
        font-weight: 500;
    }


.table-cell-edited {
    position: relative;
}

    .table-cell-edited::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-top: 10px solid red;
        border-left: 10px solid transparent;
    }

.patient-row-blue > td {
    background-color: #E6F0FA;
}

.patient-row-white > td {
    background-color: #ffffff;
}

/* Selection ALWAYS wins */
.rz-datagrid .rz-state-selected > td {
    background-color: #3399FF !important;
    color: white;
}
