* {
    font-family: "Outfit";
    color: white;
}

body {
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.row {
    width: 100%;
    margin: 0 !important;
}

.theme-switcher {
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 9999;
}

.theme-selector {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    position: relative;
}

.theme-selector:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.theme-selector i {
    font-size: 16px;
}

.theme-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.theme-selector.open .theme-arrow {
    transform: rotate(180deg);
}

.theme-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.theme-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-option:last-child {
    border-bottom: none;
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.2);
}

.theme-option.active {
    background: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.theme-option i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.theme-name {
    flex: 1;
    font-weight: 500;
}

.theme-description {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 2px;
}

.btn-logout-container {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
}

.btn-menu-container {
    position: fixed;
    top: 16px;
    right: 180px;
    z-index: 9999;
}

.container-login {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50%;
    transform: translateX(50%) !important;
}

.login-container {
    display: flex;
    background: transparent;
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.brand-section {
    flex: 1;
    background: transparent;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.brand-logo {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.brand-logo i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.87);
}

.form-section {
    width: 100%;
    padding: 3rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 400;
}

.login-form {
    width: 100%;
}

.input-group {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    /* overflow: hidden; */
}

.input-group:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

/* Estilos para campos inválidos */
.input-group.is-invalid {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.input-group.is-invalid .input-icon {
    color: #ff6b6b !important;
}

.input-group.is-invalid .input-field label {
    color: #ff6b6b !important;
}

.input-icon {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.input-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.input-field {
    flex: 1;
    padding: 0.3rem 0.5rem 0.3rem 0.5rem;
    align-content: center;
}

.input-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Estilos para el contenedor del input de contraseña */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.password-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.password-toggle i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-control {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    padding: 0 !important;
    padding-right: 8px !important;
    outline: none !important;
    box-shadow: none !important;
}

.form-control[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.185) !important;
    font-style: oblique;
}

.form-control:focus {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.form-control[disabled] {
    background: rgba(255, 255, 255, 0.08) !important;
    border: none !important;
    box-shadow: none !important;
}

.foto-upload-area {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
}

.foto-upload-area:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.foto-upload-area.dragover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.foto-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.option-text {
    font-size: 16px;
}

.time-picker {
    overflow-y: auto;
    max-height: 34vh;
}

.timer-picker-disabled {
    background: rgba(255, 107, 107, 0.95);
    color: white;
}

.timer-picker-disabled:hover {
    background: rgba(255, 107, 107, 0.95) !important;
    cursor: not-allowed;
}

.time-picker-option {
    justify-content: center;
    font-size: x-large;
    padding: 0.5rem !important;
}

.input-calendar-grid {
    padding: 10px;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    justify-items: center;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    justify-items: center;
    height: 100%;
}

.day {
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: 100%;
    padding: 10px;
}

.day.other-month {
    color: #9e9e9e;
}

.day:hover:not(.disabled):not(.other-month):not(.ocuped) {
    background: rgba(255, 255, 255, 0.1);
}

.day.disabled {
    color: #807b7b;
    cursor: not-allowed;
}

.day.selected {
    background: #8b5cf6;
    color: white;
    font-weight: 600;
}

.day.ocuped {
    background: rgba(255, 107, 107, 0.95);
    color: white;
    font-weight: 600;
    cursor: not-allowed;
}

.input-calendar-header {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-button-calendar {
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.remember-me input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.remember-me input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

.remember-me input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.remember-me input[type="checkbox"]:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.remember-me input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.remember-me label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.remember-me:hover label {
    color: white;
}

.forgot-password {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: white;
}

.btn-copyqr {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    padding: 0 1rem 0 1rem;
}

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 1rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    margin-bottom: 2rem;
    border: none;
}

.btn-login:hover:not(:disabled) {
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-login i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Animación de rotación para el icono de carga */
.btn-login .bi-arrow-clockwise {
    animation: spin 1s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.signup-link {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.signup-link a {
    color: #a49add;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #ffffff;
}

/* Estilos para el Toast */
.toast-container {
    position: fixed !important;
    top: 20px;
    right: 50%;
    transform: translateX(50%);
    z-index: 9999;
    max-width: 400px;
}

.toast {
    backdrop-filter: blur(20px);
    border-radius: 12px;
    color: white;
    margin-bottom: 10px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.toast-error {
    background: rgba(255, 107, 107, 0.95) !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3) !important;
}

.toast-success {
    background: rgba(40, 167, 69, 0.95) !important;
    border-color: rgba(40, 167, 69, 0.3) !important;
    box-shadow: 0 8px 32px rgba(40, 167, 69, 0.3) !important;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.toast-header i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #000000;
}

.toast-title {
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
    color: #000000;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.toast-body {
    padding: 0.5rem 1.5rem 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: pre-line;
}

/* Estilos para el Menú */
.menu-container {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-header {
    text-align: center;
    margin-bottom: 0;
}

.menu-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
}

.menu-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    overflow: hidden;
}

.menu-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.menu-item:focus-within {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.menu-item:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-icon {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.menu-item:hover .menu-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.menu-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover .menu-icon i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.menu-content {
    flex: 1;
}

.menu-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease;
}

.menu-item:hover .menu-item-title {
    color: white;
}

.menu-item-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.menu-item:hover .menu-item-description {
    color: rgba(255, 255, 255, 0.9);
}

.menu-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-item:hover .menu-arrow {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-menu {
    transition: all 0.2s;
    background: none;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    padding: 0.4rem 1rem 0.4rem 1rem;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

.btn-menu i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-logout {
    transition: all 0.2s;
    background: rgba(255, 107, 107, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    color: white;
    padding: 0.4rem 1rem 0.4rem 1rem;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: rgba(255, 107, 107, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    color: white;
}

.btn-logout i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Estilos para textarea */
textarea.form-control {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
    font-family: inherit;
}

/* Estilos para inputs de redes sociales */
.social-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-input {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-input:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-input i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    min-width: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.social-input input {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 0.9rem !important;
    width: 100% !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.social-input input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.social-input input:focus {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Estilos para imagen QR */
.qr-image-container {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.qr-image-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.qr-image {
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    width: 100%;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
}

.qr-placeholder i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.qr-placeholder span {
    font-size: 0.6rem;
    text-align: center;
}

/* Styles for logo preview */
.logo-preview {
    width: 100%;
    max-height: 20rem;
    border-radius: 12px;
    object-fit: cover;
}

.logo-remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 71, 71, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-remove-btn:hover {
    background: rgba(255, 0, 0, 1);
}

.logo-remove-btn i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Estilos para el componente agendaempresa */
.agenda-container {
    min-height: 100vh;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); */
    background: linear-gradient(135deg, #815da5 0%, #642c83 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.agenda-header {
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.empresa-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.logo-section {
    flex-shrink: 0;
}

.empresa-logo {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.empresa-details {
    text-align: left;
    max-width: 400px;
}

.agenda-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agenda-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.4;
    max-width: 100%;
    word-wrap: break-word;
}

.compressed-info {
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
    justify-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.info-item span,
.info-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-item a:hover {
    color: white;
    text-decoration: underline;
}

.social-media-section {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fca326 100%);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0ea5e9 100%);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #0a66c2 100%);
}

.social-link i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.agenda-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.agendar-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.agendar-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.agendar-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
}

.btn-agendar:active {
    transform: translateY(0);
}

.btn-agendar i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-cancelaragenda {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-cancelaragenda:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333 0%, #b01f2d 100%);
}

.btn-cancelaragenda:active {
    transform: translateY(0);
}

.btn-cancelaragenda i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Estilos específicos para el componente servicios */

/* Estilos para select */
.input-group select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    padding-right: 2.5rem !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer !important;
}

select.form-control option {
    background-color: #2c3e50;
    color: white;
}

select.form-control:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

select.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

/* Para Firefox */
/* select.form-control::-ms-expand {
    display: none;
} */

/* Estilos adicionales para asegurar que la flecha se vea */
/* select.form-control::-webkit-select-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

select.form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
} */

/* Asegurar que el select tenga el estilo correcto en todos los navegadores */
/* select.form-control {
    background-color: transparent !important;
} */

/* Estilos específicos para el componente servicios */
/* .input-group select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    padding-right: 2.5rem !important;
} */

/* Estilos más específicos para el select de categoría */
#categoria.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    padding-right: 2.5rem !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer !important;
}

/* Estilos para las opciones del select */
#categoria.form-control option {
    background-color: #2c3e50 !important;
    color: white !important;
    padding: 0.5rem !important;
}

/* Estilos adicionales para compatibilidad */
select.form-control:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
}

select.form-control:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
}

/* Para Safari */
select.form-control::-webkit-select-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Para Firefox */
select.form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Estilos para el componente listas */

.btn-clear-search {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}

.btn-clear-search:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.loading-spinner {
    font-size: 2rem;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

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

    to {
        transform: rotate(360deg);
    }
}

.servicios-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.servicio-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.servicio-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.servicio-card.inactive {
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.05);
}

.servicio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.servicio-icon {
    font-size: 1.5rem;
    color: #4ade80;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.servicio-status {
    display: flex;
    align-items: center;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.status-badge.inactive {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.servicio-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.servicio-nombre {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: white;
    line-height: 1.3;
}

.servicio-descripcion {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.servicio-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.detail-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    min-width: 60px;
}

.detail-value {
    color: white;
    font-weight: 600;
}

.consentimiento-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #60a5fa;
}

.consentimiento-info i {
    font-size: 1rem;
}

.no-results,
.no-services,
.no-citas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 100%;
}

.no-results i,
.no-services i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.no-results h3,
.no-services h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
}

.no-results p,
.no-services p,
.no-citas p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}

/* Estilos para botones de acción de servicios */
.servicio-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 80px;
    justify-content: center;
}

.btn-edit {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.btn-edit:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.btn-toggle-status {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.btn-toggle-status:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-1px);
}

.btn-toggle-status.active {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.btn-toggle-status.active:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.btn-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-delete:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover:not(:disabled) {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-danger:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Estilos para el modal de confirmación */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-container {
    background: linear-gradient(135deg, #815da5 0%, #642c83 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 500px;
    width: 100%;
    overflow: visible;
    transform: translateY(-20px);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 0 30px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-footer {
    padding: 0 30px 20px 30px !important;
}

.modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.modal-body {
    padding: 30px !important;
}

.consent-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 1rem;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.consent-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.consent-text {
    flex: 1;
    margin-bottom: 1.5rem;
}

.consent-text p {
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
}

.warning-text {
    color: #fbbf24 !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-cancelar {
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-cancelar:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

.btn-confirmar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-confirmar:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-confirmar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-confirmar i {
    font-size: 1.1rem;
}

/* Estilos para la jornada laboral */
.dias-semana {
    margin-bottom: 1rem;
}

.dias-semana .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dias-checkbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.dia-checkbox-item {
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dia-checkbox-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.dia-checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.dia-checkbox-item input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

.dia-checkbox-item input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pago-checkbox {
    display: flex;
    flex-direction: column;
}

.pago-checkbox-item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    padding: 0.1rem 0.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pago-checkbox-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.pago-checkbox-item input[type="radio"]:checked {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.pago-checkbox-item input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.servicios-porcentaje-list {
    max-height: 68vh;
    overflow-y: auto;
}

.dia-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.dia-checkbox-item:hover .dia-label {
    color: white;
}

/* Estilos para los horarios */
.horarios-container {
    margin-top: 1rem;
}

.horarios-container .row {
    display: flex;
    gap: 1rem;
}

.horarios-container .col-md-6 {
    flex: 1;
}

.horarios-container .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Estilos para la lista de citas */
.citas-list {
    max-height: 400px;
    overflow-y: auto;
}

.citas-list h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.cita-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cita-item-aceptada {
    background: linear-gradient(135deg, #6EE7B7 0%, #A7F3D0 50%, #D1FAE5 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #064E3B;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cita-item-cancelando {
    background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 50%, #F59E0B 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #FFEB3B;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.citas-card-fecha-aceptada {
    color: #047857 !important;
}

.citas-card-fecha-cancelando {
    color: #92400E !important;
}

.cita-fecha {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.cita-body {
    color: rgba(255, 255, 255, 0.9);
}

.cita-body p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cita-body strong {
    color: white;
    font-weight: 600;
}

/* Estilos para el calendario */
.calendar-container {
    display: flex;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    font-family: "Outfit", sans-serif;
}

/* Sidebar del calendario */
.calendar-sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.calendar-sidebar.hidden {
    width: 0;
    padding: 0;
    border-right: none;
    opacity: 0;
    transform: translateX(-100%);
}

/* Mini calendarios */
.mini-calendar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.mini-nav-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.mini-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mini-calendar-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    flex: 1;
}

.mini-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.mini-day-header {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
}

.mini-day {
    text-align: center;
    padding: 0.25rem;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    position: relative;
}

.mini-day:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mini-day.other-month {
    color: rgba(255, 255, 255, 0.4);
}

.mini-day.today {
    background: #4ade80;
    color: #1a1a1a;
    font-weight: 600;
}

.mini-day.has-events::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #4ade80;
    border-radius: 50%;
}

/* Vista principal del calendario */
.calendar-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.btn-today {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-today:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.calendar-nav-arrows {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    min-width: 200px;
    text-align: center;
}

/* Botón para toggle del sidebar */
.btn-toggle-sidebar {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.btn-toggle-sidebar:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-toggle-sidebar i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}


.selector-open {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.selector-header {
    padding: 6px 10px 6px 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

.selector-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.selector-text {
    flex: 1;
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

.placeholder-text {
    color: white;
    /* font-style: italic; */
}

.selector-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.selector-arrow.open {
    transform: rotate(180deg);
}

.selector-dropdown {
    position: absolute;
    top: 100%;
    left: -2px;
    right: -2px;
    backdrop-filter: blur(20px);
    border-radius: 0 0 12px 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.selector-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 338px;
    overflow: auto;
}

.foto-profesional-lista-container {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.foto-profesional-lista {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.selector-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.selector-option:last-child {
    border-bottom: none;
}

.selector-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.selector-option img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.view-dropdown {
    background: none;
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.view-dropdown option {
    background: #2c3e50;
    color: white;
}

.badge {
    cursor: pointer;
    margin-right: 0.5rem;
    margin-bottom: 0.3rem;
    background: rgb(100, 113, 255) !important;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(5px);
    transition: all 0.2s ease;
}

.badge:hover {
    background: rgb(81, 93, 226) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Grid del calendario */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto repeat(6, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
}

.calendar-day-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-day {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    min-height: 100px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.1);
}

.calendar-day.other-month {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.4);
}

.calendar-day.today {
    background: rgba(74, 222, 128, 0.2);
    border: 2px solid #4ade80;
}

.calendar-day.selected {
    background: rgba(102, 126, 234, 0.3);
    border: 2px solid #667eea;
}

.day-number {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: absolute;
    z-index: 500;
}

.month-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}

.day-events {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-height: 100%;
    overflow-y: auto;
}

.event-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    border-left: 3px solid #3b82f6;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.75rem;
}

.event-header {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.1rem;
}

.event-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-item.event-cancelled {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: rgba(255, 255, 255, 0.7);
}

.event-item.event-normal {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.5);
}

.event-item.event-pending {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.7);
}

.event-time {
    font-weight: 600;
    color: #4ade80;
    font-size: 0.65rem;
}

.event-title {
    font-weight: 500;
    margin: 0.1rem 0;
    line-height: 1.2;
}

.event-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.6rem;
}

.event-organizer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6rem;
    font-style: italic;
}

/* Estilos para vista de día */
.day-view-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    flex: 1;
}

.day-view-header {
    display: grid;
    align-items: center;
    grid-template-columns: 90px 1fr;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-column-header,
.events-column-header {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.events-column-header-profesional {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    gap: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
}

.day-view-grid {
    max-height: calc(100vh - 260px);
    overflow-y: auto;
}

.day-hour-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 60px;
}

.day-hour-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.time-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.events-slot {
    padding: 0.5rem;
    position: relative;
    min-height: 60px;
}

.events-slot.has-events {
    background: rgba(255, 255, 255, 0.02);
}

.day-event-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid #3b82f6;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.day-event-item:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.day-event-item.event-pending {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.day-event-item.event-cancelled {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.day-event-item.event-normal {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    width: 100%;
}

.day-event-item .event-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.day-event-item .event-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.day-event-item .event-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.day-event-item .event-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.day-event-item .event-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.day-event-item .event-organizer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Estilos para el componente período de prueba */
.periodo-faltante {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
    width: 100%;
    transition: all 0.3s ease;
}

.periodo-faltante.oculto {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
}

.periodo-faltante-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.periodo-faltante-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ff6b6b);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.periodo-test-info-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.periodo-icon {
    font-size: 1.5rem;
    color: #ff6b6b;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
}

.dias-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 60px;
}


.btn-suscribirse-compact {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
}

.btn-suscribirse-compact:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #ff7979 100%);
}

.btn-suscribirse-compact:active {
    transform: translateY(0) scale(1);
}

.btn-suscribirse-compact i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-cerrar {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.btn-cerrar:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

.btn-cerrar i {
    font-size: 0.9rem;
    font-weight: bold;
}

.periodo-test-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.periodo-test-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.periodo-test-icon {
    margin-bottom: 2rem;
}

.periodo-test-icon i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.periodo-test-info {
    color: white;
}

.periodo-test-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.periodo-test-title.expired {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.periodo-test-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 400;
}

.dias-restantes {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.dias-numero {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #4ade80;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.dias-container .dias-numero {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff6b6b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.dias-texto {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dias-container .dias-texto {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.periodo-test-message {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.periodo-test-message.expired {
    color: rgba(255, 107, 107, 0.9);
    font-weight: 500;
}

.periodo-expired-icon {
    margin-bottom: 2rem;
}

.periodo-expired-icon i {
    font-size: 4rem;
    color: #ff6b6b;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.btn-suscribirse {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    text-decoration: none;
}

.btn-suscribirse:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #ff7979 100%);
}

.btn-suscribirse:active {
    transform: translateY(0);
}

.btn-suscribirse i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Estilos para el calendario semanal */

/* Vista semanal del calendario */
.week-view-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    flex: 1;
}

.espacio-week-view {
    padding-right: 15px;
}

.week-view-header {
    display: grid;
    grid-template-columns: 90px repeat(7, 1fr);
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-column-header {
    padding: 1rem 0.5rem;
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.day-column-header {
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.day-column-header:last-child {
    border-right: none;
}

.day-column-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.day-column-header.today {
    background: rgba(74, 222, 128, 0.2);
    border: 2px solid #4ade80;
}

.day-column-header.selected {
    background: rgba(102, 126, 234, 0.3);
    border: 2px solid #667eea;
}

.day-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.day-month {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.week-view-grid {
    max-height: calc(100vh - 310px);
    overflow-y: auto;
}

.week-hour-row {
    display: grid;
    grid-template-columns: 90px repeat(7, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 60px;
}

.week-hour-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.day-time-slot {
    padding: 0.25rem;
    position: relative;
    min-height: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.day-time-slot:last-child {
    border-right: none;
}

.day-time-slot:hover {
    background: rgba(255, 255, 255, 0.02);
}

.day-time-slot.has-events {
    background: rgba(255, 255, 255, 0.02);
}

.week-event-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    border-left: 3px solid #3b82f6;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.75rem;
}

.week-event-item:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.week-event-item.event-pending {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.week-event-item.event-cancelled {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.week-event-item.event-normal {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    width: 100%;
}

.week-event-item .event-header {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.week-event-item .event-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.week-event-item .event-time {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.week-event-item .event-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.1rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.week-event-item .event-location {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.week-event-item .event-organizer {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Estilos para la selección de color del profesional */
.color-selection-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.color-preview {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.color-input-original {
    width: 100%;
    height: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
}

.color-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.color-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.color-input {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-input:hover {
    transform: scale(1.1);
}

.btn-random-color {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border: none;
}

.btn-random-color:hover {
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-random-color:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-random-color i {
    font-size: 16px;
}

.btn-select-color {
    flex: 1;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    padding: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
    border: none;
}

.btn-select-color:hover {
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(240, 147, 251, 0.6);
    background: linear-gradient(135deg, #e585f0 0%, #e4495a 100%);
}

.btn-select-color:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-select-color i {
    font-size: 16px;
}

.calendar-main-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

/* Estilos específicos para el componente Caja */
.citas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Override para las tarjetas de citas en caja */
.servicio-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.servicio-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

/* Estilos específicos para los estados de citas en caja */
.status-badge.estado-en-curso {
    background: rgba(255, 243, 205, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-badge.estado-finalizada {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.status-badge.estado-pagada {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.status-badge.estado-proximo {
    background: rgba(255, 243, 205, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.info-cita {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border-left: 4px solid rgba(96, 165, 250, 0.5);
    backdrop-filter: blur(10px);
}

.info-cita h4 {
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 600;
}

.info-cita p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Estilos para el componente agendamientodia */
.payment-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    padding: 0 0 1rem 0;
}

.payment-info-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.payment-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.payment-info-card.monthly-approximate .payment-info-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.payment-info-card.income-received .payment-info-icon {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.payment-info-card.pending-payment .payment-info-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.payment-info-content {
    flex: 1;
    min-width: 0;
}

.payment-info-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-info-value {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    word-break: break-all;
}

/* Estilos específicos para el componente Cierre de Caja */

/* Resumen del día */
.resumen-container {
    margin-bottom: 2rem;
}

.resumen-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resumen-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.resumen-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.resumen-item.total {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.3);
    font-weight: 600;
}

.resumen-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.resumen-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.resumen-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.resumen-value {
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sección de conteo */
.conteo-section {
    margin-bottom: 2rem;
}

.conteo-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.conteo-title i {
    color: #4ade80;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Grupos de denominaciones */
.denominaciones-group {
    margin-bottom: 2rem;
}

.denominaciones-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.denominaciones-subtitle i {
    color: #60a5fa;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Grid de denominaciones */
.denominaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

/* Items de denominación */
.denominacion-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
}

.denominacion-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.denominacion-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.denominacion-info i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.denominacion-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.denominacion-subtotal {
    font-size: 0.9rem;
    color: #4ade80;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Controles de cantidad */
.denominacion-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.btn-cantidad {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cantidad:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.btn-cantidad:active {
    transform: scale(0.95);
}

.btn-cantidad i {
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.cantidad-input {
    width: 60px;
    height: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cantidad-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.cantidad-input::-webkit-outer-spin-button,
.cantidad-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cantidad-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Resumen del conteo */
.resumen-conteo {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resumen-conteo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.resumen-conteo-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.resumen-conteo-item.diferencia {
    font-weight: 600;
    font-size: 1.1rem;
}

.resumen-conteo-item.diferencia.positiva {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.resumen-conteo-item.diferencia.negativa {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.resumen-conteo-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.resumen-conteo-value {
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Botones de acción */
.conteo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.conteo-actions .btn-secondary,
.conteo-actions .btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    min-width: 150px;
    justify-content: center;
}

.conteo-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.conteo-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.conteo-actions .btn-primary {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.conteo-actions .btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}

.conteo-actions .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.conteo-actions i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-infopago-cel {
    display: none;
}

.item-organizer-cel {
    display: none;
}

.item-organizer-desktop {
    display: block;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-nueva-cita {
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-nueva-cita-mes {
    width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ===== ESTILOS COMPONENTE ENCUESTA ===== */

.puntuacion-container,
.observacion-container {
    margin-bottom: 2rem;
    width: 100%;
}

.estrellas-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.estrella {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.estrella:hover {
    transform: scale(1.15);
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.estrella.activa {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.puntuacion-texto {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.textarea-observacion {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-family: "Outfit", inherit;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.textarea-observacion::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.textarea-observacion:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.botones-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-enviar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-enviar:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-enviar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}

.btn-enviar:disabled:hover {
    transform: none;
}

/* Estilos para filtros */
.reportes-filtros {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.filtros-acciones {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Grid de indicadores */
.indicadores-grid {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    width: 100%;
}

.indicadores-grid:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.indicador-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.indicador-card-title {
    display: flex;
    align-items: center;
}

.indicador-icon {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-right: 1rem;
}

.indicador-content {
    flex: 1;
}

.indicador-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.indicador-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Grid de períodos */
.periodos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.periodo-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.periodo-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.periodo-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.periodo-label i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.periodo-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Gráfico de barras */
.grafico-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.grafico-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.5rem;
}

.grafico-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.grafico-title i {
    color: #60a5fa;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.grafico-content {
    min-height: 200px;
}

.grafico-barras {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    /* height: 200px; */
    padding: 1.5rem 0;
    /* overflow-x: auto; */
}

.barra-item {
    flex: 1;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.barra-valor {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

.barra-container {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.barra {
    width: 80%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.barra:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.barra-label {
    position: absolute;
    bottom: -25px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    transform-origin: left bottom;
}

.no-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.no-data i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Grid de Top Services y Profesionales */
.tops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.top-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1rem 1.5rem;
}

.top-header {
    padding-bottom: 0.5rem;
}

.top-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.top-title i {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.top-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.top-rank {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.top-info {
    flex: 1;
}

.top-nombre {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.top-cantidad {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.no-data-small {
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Tabla de citas */
.tabla-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.tabla-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.tabla-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.tabla-title i {
    color: #60a5fa;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.tabla-cantidad {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.tabla-wrapper {
    overflow-x: auto;
}

.tabla-citas {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.tabla-citas thead {
    background: rgba(255, 255, 255, 0.05);
}

.tabla-citas th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tabla-citas td {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.tabla-citas tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.badge-estado {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-estado.estado-agendada,
.badge-estado.estado-aceptada {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.badge-estado.estado-cumplida {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-estado.estado-cancelada,
.badge-estado.estado-cancelado {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-estado.estado-pendiente {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.no-citas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.no-citas i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.no-citas h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
}

.no-citas p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.tabla-container-agendamiento {
    width: 100%;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tabla-day-view-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabla-time-column-header {
    text-align: center;
    background: #8180D5;
}

table {
    border-collapse: collapse;
    min-width: 800px;
    /* evita que se comprima demasiado */
}

th,
td {
    width: 150px;
    padding: 8px 0;
    border: 1px solid #ccc;
    white-space: nowrap;
    text-align: center !important;
}

/* Primera columna fija */
.fija {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 10;
    /* evita que quede debajo de otras celdas */
}

/* La cabecera fija necesita un z-index más alto */
th.fija {
    z-index: 20;
    width: 10%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* CELULARES */

/* Responsive */
@media (max-width: 1280px) {
    th.fija {
        width: 20% !important;
    }

    table {
        min-width: auto;
        width: auto !important;
    }

    .grafico-container {
        margin-bottom: 1rem;
    }

    .tabla-container {
        margin-bottom: 3.5rem;
    }

    .filtros-grid {
        grid-template-columns: 1fr;
    }

    .indicadores-grid {
        grid-template-columns: 1fr;
        margin-bottom: 1rem;
    }

    .periodos-grid {
        grid-template-columns: 1fr;
    }

    .tops-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .grafico-barras {
        gap: 0.5rem;
    }

    .barra-item {
        min-width: 50px;
    }

    .barra-label {
        font-size: 0.65rem;
        bottom: -20px;
    }

    .tabla-wrapper {
        overflow-x: scroll;
    }

    .tabla-citas {
        min-width: 700px;
    }

    .tabla-citas th,
    .tabla-citas td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .btn-nueva-cita {
        width: 100% !important;
    }

    .btn-nueva-cita-mes {
        display: none !important;
    }

    .selector-dropdown {
        max-height: 50vh;
        overflow: auto;
    }

    .calendar-day-header {
        padding: 0.5rem;
    }

    .item-organizer-desktop {
        display: none;
    }

    .item-organizer-cel {
        display: block;
        height: 100%;
    }

    .event-header {
        display: none !important;
    }

    .event-header .event-time {
        display: none;
    }

    .event-title {
        font-size: 0.6rem !important;
    }

    .day-event-item .event-organizer {
        font-size: 0.6rem !important;
    }

    .event-item {
        padding: 0;
    }

    .day-events {
        margin-top: 1.5rem;
        gap: 0;
    }

    .week-event-item .event-header {
        display: none;
    }

    .week-event-item.event-normal {
        height: 100%;
    }

    .btn-logout-container {
        position: fixed;
        top: auto;
        bottom: 16px;
        right: 16px;
        z-index: 9999;
    }

    .btn-menu-container {
        position: fixed;
        top: auto;
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
        z-index: 9999;
    }

    .theme-selector {
        min-width: 130px;
    }

    .login-form {
        margin-bottom: 1.5rem;
    }

    .servicios-porcentaje-list {
        height: 50vh;
    }

    .btn-infopago-cel {
        display: block;
    }

    .informeprofesional-agenda {
        display: none !important;
    }

    .color-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-random-color {
        justify-content: center;
    }

    .color-preview {
        height: 50px;
    }

    .color-text {
        font-size: 12px;
    }

    .container-login {
        overflow: hidden;
        padding: 1rem;
        max-width: 100%;
        transform: translateX(0) !important;
    }

    /*     .container-login {
        max-width: 30%;
        transform: translateX(120%);
    } */

    .login-container {
        max-width: 400px;
    }

    .brand-section {
        padding: 2rem 1.5rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .brand-title {
        font-size: 2.2rem;
    }

    .login-subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .input-field label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 1);
    }

    .form-control {
        font-size: 1rem !important;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .btn-login {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .form-options {
        font-size: 0.85rem;
    }

    .signup-link {
        font-size: 0.85rem;
    }

    .remember-me input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .password-toggle {
        font-size: 1rem;
    }

    .toast {
        margin-bottom: 5px;
    }

    .menu-container {
        padding: 1rem;
    }

    .menu-title {
        font-size: 2.5rem;
    }

    .menu-subtitle {
        font-size: 1.1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3.5rem;
    }

    .menu-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .menu-icon {
        min-width: 60px;
        height: 60px;
        padding: 1rem;
    }

    .menu-icon i {
        font-size: 1.5rem;
    }

    .menu-item-title {
        font-size: 1.1rem;
    }

    .menu-item-description {
        font-size: 0.85rem;
    }

    .social-input {
        padding: 0.6rem;
    }

    .social-input i {
        font-size: 1rem;
    }

    .social-input input {
        font-size: 0.85rem !important;
    }

    .qr-image-container {
        padding: 0.2rem;
    }

    .qr-image {
        max-width: 295px;
        max-height: 295px;
    }

    .qr-placeholder i {
        font-size: 0.9rem;
    }

    .qr-placeholder span {
        font-size: 0.55rem;
    }

    .logo-preview {
        max-width: 315px;
        max-height: 315px;
    }

    .logo-remove-btn {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .agenda-container {
        padding: 1rem;
    }

    .empresa-info {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 0;
    }

    .empresa-details {
        text-align: center;
        max-width: 100%;
    }

    .empresa-logo {
        width: 80px;
        height: 80px;
    }

    .agenda-title {
        font-size: 2rem;
        text-align: center;
    }

    .agenda-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-item {
        padding: 0.1rem;
        font-size: 0.85rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .agenda-content {
        padding: 1.5rem;
    }

    .agendar-section {
        padding: 1.5rem;
    }

    .agendar-title {
        font-size: 1.5rem;
    }

    .btn-agendar {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .btn-cancelaragenda {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .modal-overlay {
        padding: 15px;
    }

    .modal-container {
        transform: translateY(-20px);
        max-width: 100%;
    }

    .modal-header {
        padding: 15px 15px 0 15px !important;
    }

    .modal-footer {
        padding: 0 15px 15px 15px !important;
    }

    .modal-title {
        font-size: 1.3rem;
        padding: 5px;
    }

    .modal-body {
        padding: 15px !important;
    }

    .btn-cancelar,
    .btn-confirmar {
        justify-content: center;
    }

    .servicio-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-action {
        width: 100%;
        justify-content: center;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .servicio-card {
        padding: 1rem;
    }

    .servicio-header {
        flex-direction: column;
        align-items: anchor-center;
        gap: 0.75rem;
    }

    .no-results,
    .no-services {
        padding: 2rem 1rem;
        margin-bottom: 3.5rem;
    }

    .no-results i,
    .no-services i {
        font-size: 2.5rem;
    }

    .checkbox-container {
        padding: 0.5rem;
    }

    .custom-checkbox {
        width: 18px;
        height: 18px;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }

    textarea.form-control {
        min-height: 70px;
    }

    .dias-checkbox {
        gap: 0.4rem;
    }

    .dia-checkbox-item {
        padding: 0.4rem 0.6rem;
    }

    .dia-checkbox-item input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .dia-label {
        font-size: 0.8rem;
        min-width: 18px;
    }

    .horarios-container .row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .citas-list {
        max-height: 300px;
    }

    .cita-item {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .cita-fecha {
        font-size: 0.9rem;
    }

    .cita-body p {
        font-size: 0.85rem;
    }

    .calendar-container {
        height: auto;
        min-height: 100vh;
    }

    .calendar-sidebar {
        display: none;
    }

    .mini-calendar {
        flex: 1;
    }

    .calendar-grid {
        grid-template-rows: auto repeat(6, 1fr);
    }

    .calendar-day {
        min-height: 0;
        padding: 0.3rem;
        overflow: auto;
    }

    .periodo-faltante {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }

    .periodo-faltante-content {
        padding: 0.875rem;
    }

    .periodo-test-info-compact {
        gap: 0.75rem;
    }

    .periodo-icon {
        font-size: 1.3rem;
    }

    .dias-container .dias-numero {
        font-size: 1.6rem;
    }

    .dias-container .dias-texto {
        font-size: 0.75rem;
    }

    .btn-suscribirse-compact {
        min-width: 40px;
        height: 40px;
        padding: 0.6rem;
    }

    .btn-suscribirse-compact i {
        font-size: 1rem;
    }

    .btn-cerrar {
        width: 24px;
        height: 24px;
        top: 6px;
        right: 6px;
    }

    .btn-cerrar i {
        font-size: 0.8rem;
    }

    .periodo-test-container {
        padding: 1rem;
    }

    .periodo-test-content {
        padding: 2rem;
        max-width: 400px;
    }

    .periodo-test-title {
        font-size: 2rem;
    }

    .periodo-test-subtitle {
        font-size: 1.1rem;
    }

    .dias-numero {
        font-size: 3rem;
    }

    .dias-texto {
        font-size: 1rem;
    }

    .periodo-test-message {
        font-size: 0.9rem;
    }

    .periodo-test-icon i,
    .periodo-expired-icon i {
        font-size: 3rem;
    }

    .btn-suscribirse {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .espacio-week-view {
        padding-right: 0;
    }

    .week-view-header {
        grid-template-columns: 60px repeat(7, 1fr);
    }

    .week-hour-row {
        grid-template-columns: 60px repeat(7, 1fr);
    }

    .events-column-header {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }

    .time-column-header {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }

    .day-column-header {
        padding: 0.5rem 0.25rem;
    }

    .day-view-grid {
        max-height: calc(100vh - 234px);
    }

    .day-date {
        font-size: 1rem;
    }

    .day-name {
        font-size: 0.7rem;
    }

    .day-month {
        font-size: 0.6rem;
    }

    .time-slot {
        padding: 0.25rem;
    }

    .time-label {
        font-size: 0.60rem;
    }

    .day-time-slot {
        min-height: 50px;
        padding: 0.15rem;
    }

    .week-event-item {
        padding: 0.35rem;
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }

    .week-event-item .event-title {
        display: none;
    }

    .week-event-item .event-location {
        font-size: 0.6rem;
    }

    .week-event-item .event-organizer {
        font-size: 0.6rem;
    }

    .calendar-main {
        height: 92vh;
        width: 100%;
    }

    .calendar-main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .calendar-title {
        font-size: 0.9rem;
        margin-bottom: 0;
        min-width: 100px;
    }

    .calendar-nav-arrows {
        gap: 0.5rem;
    }

    .btn-toggle-sidebar {
        display: none;
    }

    .btn-logout {
        width: 100%;
        font-size: small;
        padding: 9px 15px 9px 15px;
    }

    .btn-today {
        width: 100%;
    }

    .calendar-nav-arrows {
        justify-content: space-between;
    }

    .form-header {
        margin-bottom: 0;
    }

    .menu-header {
        margin-bottom: 0;
    }

    .payment-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .payment-info-card {
        padding: 1rem;
    }

    .payment-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .payment-info-value {
        font-size: 1.2rem;
    }

    .resumen-card {
        padding: 1rem;
    }

    .resumen-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .resumen-item i {
        font-size: 1.2rem;
    }

    .resumen-value {
        font-size: 1.1rem;
    }

    .denominaciones-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .denominacion-item {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .denominacion-controls {
        width: 100%;
        justify-content: center;
    }

    .btn-cantidad {
        width: 40px;
        height: 40px;
    }

    .cantidad-input {
        width: 80px;
        height: 40px;
    }

    .conteo-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .conteo-actions .btn-secondary,
    .conteo-actions .btn-primary {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .resumen-conteo {
        padding: 1rem;
    }

    .resumen-conteo-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .resumen-conteo-value {
        font-size: 1.1rem;
    }

    .estrella {
        font-size: 2rem;
    }

    .estrellas-container {
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .btn-enviar {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .textarea-observacion {
        min-height: 100px;
        padding: 0.875rem;
    }
}

/* TABLEST */