/* /Presentation/Components/Layout/Shared/Footer.razor.rz.scp.css */
/* Estilos aislados para Footer */

/* Card compacta del footer */
.footer-card[b-i2hsb830ay] {
  padding: 6px 8px;
}

/* Ítems dentro de la card compacta */
.footer-items[b-i2hsb830ay] {
  gap: 8px;
}

/* Alert del footer en modo mensaje simple */
.footer-alert[b-i2hsb830ay] {
  margin: 0px 20px !important;
}

/* Contenedor de copyright */
.copyright-container[b-i2hsb830ay] {
  margin-top: 3rem;
  text-align: center;
}
/* /Presentation/Components/Pages/Agenda/Wizard/AppointmentSuccess.razor.rz.scp.css */
/* Estilos aislados para el componente AppointmentSuccess (mecanismo OTP) */

/* Contenedor principal */
.success-container[b-yqptkyetu2] {
  margin: 0 auto;
}

.success-container-div[b-yqptkyetu2] {
  width: 100%;
}

.otp-section[b-yqptkyetu2] {
  margin: 20px auto !important;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
}

.otp-actions[b-yqptkyetu2] {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.otp-actions .btn[b-yqptkyetu2] {
  min-width: 140px;
}

.otp-actions span[b-yqptkyetu2] {
  color: #666;
}

.otp-display[b-yqptkyetu2] {
  margin-top: 12px;
}

.otp-title[b-yqptkyetu2] {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.otp-expiration[b-yqptkyetu2] {
  margin-left: 12px;
  color: #888;
}

.otp-info[b-yqptkyetu2] {
  font-size: 1.1rem;
}

.evidence-form[b-yqptkyetu2] {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.evidence-hint[b-yqptkyetu2] {
  color: #666;
}

.evidence-actions[b-yqptkyetu2] {
  display: flex;
  gap: 10px;
  align-items: center;
}

.message-success[b-yqptkyetu2] {
  color: #28a745;
}

.message-error[b-yqptkyetu2] {
  color: #dc3545;
}

.otp-section .form-select[b-yqptkyetu2] {
  max-width: 280px;
}

.otp-section .form-control[b-yqptkyetu2] {
  max-width: 100%;
}

@media (max-width: 576px) {
  .otp-actions[b-yqptkyetu2] {
    flex-direction: column;
    align-items: stretch;
  }

  .otp-actions .btn[b-yqptkyetu2] {
    width: 100%;
  }

  .otp-display .otp-info[b-yqptkyetu2] {
    font-size: 1rem;
  }
}
/* /Presentation/Components/Pages/Agenda/Wizard/NewDoctorComponent.razor.rz.scp.css */
.disabled-input-container[b-dkackjmcfm] {
    pointer-events: none;
    opacity: 0.4;
}
.overlay-spinner[b-dkackjmcfm] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 8px;
}
/* Asegurar que el contenedor padre tenga posición relativa para que el overlay funcione */
#ordenMedicaPanelDoctor .medical-order-label + label.file-upload-button + div[b-dkackjmcfm] {
    position: relative;
}

/* Estilos para la cámara en vivo */
.camera-overlay[b-dkackjmcfm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999; /* Por encima de todo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#cameraFeed[b-dkackjmcfm] {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ajustar para ver todo el cuadro */
    background: #000;
}
.camera-controls[b-dkackjmcfm] {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0,0,0,0.3);
}
.btn-capture[b-dkackjmcfm] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
    border: 4px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.1s;
}
.btn-capture:active[b-dkackjmcfm] {
    transform: scale(0.95);
    background-color: #eee;
}
.btn-capture i[b-dkackjmcfm] {
    font-size: 24px;
    color: #333;
}

/* Estilos para Dropdown de Doctores con Badges */
.doctor-dropdown-container[b-dkackjmcfm] {
    position: relative;
    width: 100%;
}
.doctor-dropdown-trigger[b-dkackjmcfm] {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    min-height: 38px;
}
.doctor-dropdown-menu[b-dkackjmcfm] {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    z-index: 1050;
    margin-top: 2px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.doctor-dropdown-item[b-dkackjmcfm] {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}
.doctor-dropdown-item:hover[b-dkackjmcfm] {
    background-color: #f8f9fa;
}
.doctor-dropdown-item.selected[b-dkackjmcfm] {
    background-color: #e9ecef;
    font-weight: 600;
    color: #0d6efd;
}
.day-badge[b-dkackjmcfm] {
    font-size: 0.8rem;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1fae5 !important;
    color: #064e3b;
    font-weight: bold;
}
.dropdown-backdrop[b-dkackjmcfm] {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    z-index: 1040;
    cursor: default;
}
/* /Presentation/Components/Pages/Agenda/Wizard/SummaryComponent.razor.rz.scp.css */
.summary-appointment-sidebar[b-j77ffo9254] {
    padding: 1.25rem;
    background-color: white;
    border-radius: 0.5rem;
}

.appointment-title[b-j77ffo9254] {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb; /* Línea separadora sutil */
    padding-bottom: 0.5rem;
    margin-top: 1rem; /* Espacio antes del título */
}

/* El primer título no necesita margen superior */
.appointment-title:first-child[b-j77ffo9254], .appointment-title:first-of-type[b-j77ffo9254] {
    margin-top: 0;
}

.summary-paragraph[b-j77ffo9254] {
    display: flex;
    align-items: baseline; /* Alinear texto con iconos si son de diferente tamaño */
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #4b5563; /* Gris oscuro suave */
    line-height: 1.4;
}

.summary-label[b-j77ffo9254] {
    font-weight: 700; /* Negrita SOLO para etiquetas */
    margin-right: 0.4rem;
    color: #1f2937; /* Casi negro */
    min-width: fit-content;
}

.summary-value[b-j77ffo9254] {
    font-weight: 400; /* Peso normal/delgado para el valor */
    color: #4b5563; /* Gris oscuro suave */
}

/* Borde separador para cada sección principal */
#resumenCitaPanelSummary[b-j77ffo9254],
#resumenCalendarioPanelSummary[b-j77ffo9254],
#resumenProcedimientoPanelSummary[b-j77ffo9254],
#resumenOrdenMedicaPanelSummary[b-j77ffo9254] {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

/* El último panel no necesita borde inferior */
.summary-appointment-sidebar > div:last-of-type[b-j77ffo9254] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-icon[b-j77ffo9254] {
    margin-right: 8px;
    min-width: 20px;
    text-align: center;
    color: #0d6efd; /* Color primario para iconos */
}

/* Ajuste para el contenedor verde */
.footer-message.footer-card[b-j77ffo9254] {
    padding: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #d1fae5;
    border: none;
    border-left: 4px solid #10b981;
    border-radius: 4px;
    color: #064e3b;
}
/* /Presentation/Components/Pages/Analytics/AppointmentsStats.razor.rz.scp.css */
:root[b-vxux4sj3uo] {}

.stats-card-body[b-vxux4sj3uo] {
    height: 420px;
}

@media (min-width: 992px) {
    .stats-card-body[b-vxux4sj3uo] {
        height: 70vh;
    }
}

#statsChart[b-vxux4sj3uo] {
    width: 100%;
    height: 100%;
}

.spin-animation[b-vxux4sj3uo] {
    animation: spin-b-vxux4sj3uo 1s linear infinite;
}

@keyframes spin-b-vxux4sj3uo {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gradient-primary[b-vxux4sj3uo] {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Custom Scrollbar for inner lists */
[b-vxux4sj3uo]::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

[b-vxux4sj3uo]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

[b-vxux4sj3uo]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

[b-vxux4sj3uo]::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}
/* /Presentation/Components/Pages/Home.razor.rz.scp.css */
.suros-footer-cta[b-bulv0zksqx] {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    letter-spacing: 0.8px;
    border: none;
    background: linear-gradient(135deg, #278b4c, #16a34a);
    color: #f9fafb;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(56, 219, 116, 0.4);
    position: relative;
    overflow: hidden;
    transition:
        transform 160ms ease-out,
        box-shadow 160ms ease-out,
        filter 160ms ease-out;
}

.suros-footer-cta:hover[b-bulv0zksqx] {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 22px 45px rgba(22, 163, 74, 0.6);
}

.suros-footer-cta--agendar[b-bulv0zksqx] {
    background: linear-gradient(135deg, #e0e4e1, #dee2e0);
    box-shadow: 0 18px 35px rgba(203, 209, 205, 0.35);
    color: rgb(26, 25, 25);
}

.suros-footer-cta--agendar:hover[b-bulv0zksqx] {
    box-shadow: 0 18px 35px rgba(203, 209, 205, 0.35);
}

.suros-footer-cta--consultar[b-bulv0zksqx] {
    
    background: linear-gradient(135deg, #e0e4e1, #dee2e0);
    box-shadow: 0 18px 35px rgba(203, 209, 205, 0.35);
    color: rgb(26, 25, 25);
}

.suros-footer-cta--consultar:hover[b-bulv0zksqx] {
     box-shadow: 0 18px 35px rgba(203, 209, 205, 0.35);
}

.suros-footer-cta--cancelar[b-bulv0zksqx] {
    
    background: linear-gradient(135deg, #e0e4e1, #dee2e0);
    box-shadow: 0 18px 35px rgba(203, 209, 205, 0.35);
    color: rgb(26, 25, 25);
}

.suros-footer-cta--cancelar:hover[b-bulv0zksqx] {
    box-shadow: 0 18px 35px rgba(203, 209, 205, 0.35);
}
/* /Presentation/Components/Pages/Inicio.razor.rz.scp.css */
.inicio-layout[b-mk3habwms5] {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Sidebar Styles moved to Menu.razor.css */

/* Main Content Styles */
.main-content[b-mk3habwms5] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
}

/* App Header */
.app-header[b-mk3habwms5] {
    height: 60px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #e0e0e0;
}

.app-title[b-mk3habwms5] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.header-right[b-mk3habwms5] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-date[b-mk3habwms5] {
    font-size: 0.85rem;
    color: #666;
    margin-right: 5px;
}

.connection-icon[b-mk3habwms5] {
    font-size: 1.2rem;
    color: #000;
    cursor: help;
}

.search-box[b-mk3habwms5] {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 8px;
    background-color: #fff;
    position: relative;
}

.search-results-dropdown[b-mk3habwms5] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 250px; /* Wider than the input */
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 4px;
}

.search-result-item[b-mk3habwms5] {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
    color: #333;
}

.search-result-item:hover[b-mk3habwms5] {
    background-color: #f0f4f8;
    color: #007bff;
}

.search-icon[b-mk3habwms5] {
    margin-right: 10px;
    color: #666;
    width: 20px;
    text-align: center;
}

.search-label[b-mk3habwms5] {
    font-size: 0.85rem;
    color: #666;
    margin-right: 8px;
}

.search-box input[b-mk3habwms5] {
    border: none;
    outline: none;
    font-size: 0.85rem;
    width: 150px;
}

.btn-notifications[b-mk3habwms5] {
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}

.btn-tour[b-mk3habwms5] {
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.btn-tour:hover[b-mk3habwms5] {
    background-color: #0b5ed7;
}

.user-avatar[b-mk3habwms5] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.user-avatar img[b-mk3habwms5] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tabs Container */
.tabs-container[b-mk3habwms5] {
    height: 48px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 5px;
    gap: 5px;
}

.tab-scroll-btn[b-mk3habwms5] {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    height: 100%;
    transition: color 0.2s;
}

.tab-scroll-btn:hover[b-mk3habwms5] {
    color: #666;
}

.tabs-scroll-area[b-mk3habwms5] {
    flex: 1;
    display: flex;
    align-items: center; 
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
    gap: 10px;
    padding: 0 10px;
}

.tabs-scroll-area[b-mk3habwms5]::-webkit-scrollbar {
    display: none;
}

.tab-item[b-mk3habwms5] {
    height: 44px !important;
    padding: 4px 15px;
    display: flex;
    align-items: center;
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    min-width: fit-content;
    white-space: nowrap;
    transition: all 0.2s;
    user-select: none;
}

.tab-item:hover[b-mk3habwms5] {
    background-color: #ced4da;
}

.tab-item.active[b-mk3habwms5] {
    min-height: 46px !important;
    padding: 4px 25px !important;
    background-color: #e3f2fd;
    color: #1976d2;
    border-bottom: 2px solid #1976d2;
    font-weight: 500;
}

.tab-close[b-mk3habwms5] {
    margin-left: 8px;
    font-size: 0.8rem;
    opacity: 0.6;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.tab-close:hover[b-mk3habwms5] {
    opacity: 1;
    background-color: #fadbd8;
}

/* Tab Content */
.tab-content-area[b-mk3habwms5] {
    flex: 1;
    overflow: auto;
    padding: 20px;
    position: relative;
    background-color: #fff;
}

.tab-pane[b-mk3habwms5] {
    display: none;
    height: 100%;
    width: 100%;
}

.tab-pane.active[b-mk3habwms5] {
    display: block;
    animation: fadeIn-b-mk3habwms5 0.2s ease;
}

@keyframes fadeIn-b-mk3habwms5 {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Access Denied */
.access-denied[b-mk3habwms5] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #2d3436;
}

.access-denied a[b-mk3habwms5] {
    color: #3498db;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 600;
}
.modal-title[b-mk3habwms5] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
}
/* /Presentation/Components/Pages/Login/Login.razor.rz.scp.css */
@font-face {
    font-family: Raleway-Bold;
    src: url('/fonts/raleway/phylactere.ttf');
}

.login-container[b-7kpvvw98of] {
    background: radial-gradient(ellipse at 50% 50%, #001a33 0%, #000714 45%, #000 80%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    transition: background 1s ease-in-out;
    
    /* CSS Variables moved from :root for scoped isolation */
    --hex-stroke: rgba(255,255,255,0.8);
    --hex-fill: rgba(255,255,255,0.28);
    --hex-fill-strong: rgba(255,255,255,0.38);
    --icon-primary: #79c8ff;
    --icon-secondary: rgba(121,200,255,0.92);
    --glow: rgba(46,168,255,0.55);
}

.login-container.show-background[b-7kpvvw98of] {
    background: url('/images/fondologin.jpeg') center center / cover no-repeat fixed !important;
}

.header-caption[b-7kpvvw98of] {
    position: fixed; /* Added to position it relative to viewport */
    top: 10%;
    left: 20%;
    color: #eaf2f9;
    font-size: clamp(20px, 2.2vw + 8px, 32px);
    line-height: 1.25;
    letter-spacing: 0.3px;
    max-width: min(760px, 46vw);
    z-index: 10;
    padding: 12px 20px;
    border-radius: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,.35);
    background: linear-gradient(90deg, rgba(46,168,255,.5), rgba(0,43,77,.18));
    font-family: 'Raleway', sans-serif; /* Ensuring font matches */
}

.bg-watermark[b-7kpvvw98of] {
    position: fixed;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.60;
    pointer-events: none;
    width: 60vw;
    max-width: 600px;
}

.bg-watermark-clinica[b-7kpvvw98of] {
    position: fixed;
    top: 81%;
    left: 61%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.40;
    pointer-events: none;
    width: 20vw;
    max-width: 200px;
}

.login-card[b-7kpvvw98of] {
    background: #FAFAFA;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 30px 40px;
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: fixed;
    left: 6%;
    top: 30%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-container[b-7kpvvw98of] {
    text-align: center;
    margin-bottom: 10px;
}

.login-logo[b-7kpvvw98of] {
    max-width: 180px;
    height: auto;
}

.login-title[b-7kpvvw98of] {
    text-align: center;
    font-size: 1.3rem;
    color: #2d3436;
    font-weight: 700;
    margin: 0;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    width: 100%;
}

.login-title[b-7kpvvw98of]:after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background: #3498db;
    margin: 5px auto 0;
    border-radius: 2px;
}

.input-group-text[b-7kpvvw98of] {
    background-color: #f8f9fa;
    border-right: none;
    color: #b2bec3;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

/* Make icon blue on focus/hover */
.input-group:focus-within .input-group-text[b-7kpvvw98of],
.input-group:hover .input-group-text[b-7kpvvw98of] {
    color: #3498db;
    background-color: #fff;
    border-color: #3498db;
}

.form-control[b-7kpvvw98of] {
    border-left: none;
    box-shadow: none;
    background-color: #f8f9fa;
    height: 45px;
    font-size: 15px;
}

.form-control:focus[b-7kpvvw98of] {
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    background-color: #fff;
}

.login-btn[b-7kpvvw98of] {
    background-image: linear-gradient(to right, #3498db 0%, #2980b9 51%, #3498db 100%);
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.2);
    color: white;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px 0;
}

.login-btn:hover[b-7kpvvw98of] {
    background-position: right center;
}

.forgot-password[b-7kpvvw98of] {
    color: #636e72;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover[b-7kpvvw98of] {
    color: #3498db;
    text-decoration: underline;
}

/* Hero & Animation Styles */
.hero-suros[b-7kpvvw98of] {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, #001a33 0%, #000714 45%, #000 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;
    opacity: 1;
    transition: opacity 700ms ease;
}

.hero-suros.hidden[b-7kpvvw98of] {
    opacity: 0;
    pointer-events: none;
}

.hero-stage[b-7kpvvw98of] {
    position: relative;
    width: min(1100px, 92vw);
    height: min(500px, 52vh);
}

.signal-svg[b-7kpvvw98of] {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    filter: drop-shadow(0 0 6px #2ea8ff) drop-shadow(0 0 16px rgba(46, 168, 255, .35));
}

.signal-svg svg[b-7kpvvw98of] {
    width: 100%;
    height: 120px;
}

.text-and-check[b-7kpvvw98of] {
    position: absolute;
    left: 45%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: min(24px, 3vw);
    z-index: 2;
}

.suros-text[b-7kpvvw98of] {
    color: #fff;
    font-weight: 600;
    letter-spacing: .5px;
    font-size: 13em;
    display: inline-flex;
    align-items: start;
    margin-top: -20px;
    font-family: 'Raleway-Bold' !important;
}

.suros-text .sur[b-7kpvvw98of],
.suros-text .su[b-7kpvvw98of] {
    opacity: 0;
    animation: fadeIn-b-7kpvvw98of 700ms ease forwards;
    animation-delay: 2.7s;
    margin-left: 0px !important;
}

.suros-text .u[b-7kpvvw98of] {
    opacity: 0;
    animation: fadeIn-b-7kpvvw98of 700ms ease forwards;
    animation-delay: 3.1s;
    margin-left: 0px !important;
}

.suros-text .r[b-7kpvvw98of] {
    opacity: 0;
    animation: fadeIn-b-7kpvvw98of 500ms ease forwards;
    animation-delay: 3.3s;
    margin-left: 0px !important;
}

.suros-text .s[b-7kpvvw98of] {
    opacity: 0;
    animation: fadeIn-b-7kpvvw98of 700ms ease forwards;
    animation-delay: 3.5s;
    margin-left: 0px !important;
}

.o-wrap[b-7kpvvw98of] {
    position: relative;
    display: inline-block;
}

.o[b-7kpvvw98of] {
    margin-top: -18px !important;
    display: inline-block;
    font-size: 1.1em;
    transform: translateY(-260%) scale(1.12);
    opacity: 0;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .35));
    text-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    animation: dropImpact-b-7kpvvw98of 1400ms cubic-bezier(.22, .8, .25, 1) 0.6s forwards, shockGlow-b-7kpvvw98of 900ms ease-out 1s both;
    will-change: transform, filter;
}

.tilde[b-7kpvvw98of] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -0.10em;
    opacity: 0;
    color: #ffffff;
    font-size: 1em;
    animation: accentImpact-b-7kpvvw98of 700ms cubic-bezier(.22, .8, .25, 1) 1.9s forwards;
    color: #ff2e2e;
}

/* Background Hexagons */
.medical-bg[b-7kpvvw98of] {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Removed :root to fix scope issue */

.hex[b-7kpvvw98of] {
    position: absolute;
    width: clamp(88px, 10vw, 180px);
    height: clamp(88px, 10vw, 180px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)), var(--hex-fill);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .25), 0 0 28px var(--glow);
    border: 2px solid var(--hex-stroke);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    backdrop-filter: blur(3px);
    will-change: transform, opacity;
}

.hex.strong[b-7kpvvw98of] {
    background: var(--hex-fill-strong);
}

.hex .icon[b-7kpvvw98of] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--icon-secondary);
    font-size: clamp(40px, 4.5vw, 65px);
    opacity: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35));
    text-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    will-change: transform, opacity;
}

.hex.main .icon[b-7kpvvw98of] {
    color: var(--icon-primary);
    opacity: 0.95;
}

.hex.lg[b-7kpvvw98of] {
    width: clamp(120px, 12vw, 220px);
    height: clamp(120px, 12vw, 220px);
}

.hex.sm[b-7kpvvw98of] {
    width: clamp(64px, 7vw, 120px);
    height: clamp(64px, 7vw, 120px);
}

.hex.xs[b-7kpvvw98of] {
    width: clamp(48px, 5.4vw, 96px);
    height: clamp(48px, 5.4vw, 96px);
}

.hex .icon.sm[b-7kpvvw98of] {
    font-size: clamp(24px, 2.8vw, 36px);
}

.hex .icon.xs[b-7kpvvw98of] {
    font-size: clamp(18px, 2.2vw, 28px);
}

/* Positions */
.p1[b-7kpvvw98of] {
    left: 66%;
    top: 14%;
}

.p2[b-7kpvvw98of] {
    left: 76%;
    top: 24%;
}

.p3[b-7kpvvw98of] {
    left: 84%;
    top: 40%;
}

.p4[b-7kpvvw98of] {
    left: 70%;
    top: 46%;
}

.p5[b-7kpvvw98of] {
    left: 80%;
    top: 60%;
}

.p6[b-7kpvvw98of] {
    left: 66%;
    top: 64%;
}

.p7[b-7kpvvw98of] {
    left: 58%;
    top: 24%;
}

.p8[b-7kpvvw98of] {
    left: 60%;
    top: 36%;
}

.p9[b-7kpvvw98of] {
    left: 64%;
    top: 52%;
}

.p10[b-7kpvvw98of] {
    left: 86%;
    top: 70%;
}

.p11[b-7kpvvw98of] {
    left: 72%;
    top: 42%;
}

.p12[b-7kpvvw98of] {
    left: 68%;
    top: 28%;
}

/* Keyframes */
@keyframes dropImpact-b-7kpvvw98of {
    0% {
        transform: translateY(-260%) scale(1.12);
        filter: blur(6px) drop-shadow(0 22px 44px rgba(0, 0, 0, .45));
        opacity: 0;
    }

    20% {
        transform: translateY(-80%) scale(1.06);
        filter: blur(2px) drop-shadow(0 18px 36px rgba(0, 0, 0, .4));
        opacity: 1;
    }

    60% {
        transform: translateY(10%) scale(0.95);
        filter: blur(0) drop-shadow(0 30px 45px rgba(0, 0, 0, .35));
    }

    78% {
        transform: translateY(-6%) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
        filter: blur(0) drop-shadow(0 8px 16px rgba(0, 0, 0, .28));
        opacity: 1;
    }
}

@keyframes accentImpact-b-7kpvvw98of {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-40%) rotate(-25deg) scale(0.85);
        filter: blur(4px);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-8%) rotate(6deg) scale(1.1);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes shockGlow-b-7kpvvw98of {
    0% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    35% {
        text-shadow: 0 10px 28px rgba(0, 0, 0, .35), 0 0 24px rgba(46, 168, 255, .5);
    }

    100% {
        text-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    }
}

@keyframes fadeIn-b-7kpvvw98of {
    from {
        opacity: 0;
        filter: blur(2px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes pulse-b-7kpvvw98of {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35));
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        filter: drop-shadow(0 0 15px rgba(121, 200, 255, 0.8));
    }
}

@keyframes floatY-b-7kpvvw98of {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes fadeSoft-b-7kpvvw98of {
    0% {
        opacity: .65;
    }

    50% {
        opacity: .35;
    }

    100% {
        opacity: .65;
    }
}

.hex.float[b-7kpvvw98of] {
    animation: floatY-b-7kpvvw98of 6s ease-in-out infinite;
}

.hex.soft[b-7kpvvw98of] {
    animation: fadeSoft-b-7kpvvw98of 8s ease-in-out infinite;
}

.hex .icon.pulse[b-7kpvvw98of] {
    animation: pulse-b-7kpvvw98of 2.6s ease-in-out infinite;
}

.animate__animated[b-7kpvvw98of] {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInLeft[b-7kpvvw98of] {
    animation-name: fadeInLeft-b-7kpvvw98of;
}

@keyframes fadeInLeft-b-7kpvvw98of {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/* /Presentation/Components/Pages/Menu.razor.rz.scp.css */
.sidebar[b-6xi1ypfhlv] {
    width: 260px;
    background: var(--sidebar-gradient);
    color: var(--sidebar-text);
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 100;
    transition: width 0.3s ease;
    height: 100%;
    overflow-y: auto;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
}

/* Scrollbar styles for webkit */
.sidebar[b-6xi1ypfhlv]::-webkit-scrollbar {
    width: 6px;
}
.sidebar[b-6xi1ypfhlv]::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}
.sidebar[b-6xi1ypfhlv]::-webkit-scrollbar-thumb {
    background: var(--sidebar-hover);
    border-radius: 3px;
}
.sidebar[b-6xi1ypfhlv]::-webkit-scrollbar-thumb:hover {
    background: var(--sidebar-hover);
}

.sidebar-header[b-6xi1ypfhlv] {
    background-color: var(--sidebar-bg-overlay);
    padding: 10px 15px;
    border-bottom: 1px solid var(--sidebar-border);
}

.nav-system-title[b-6xi1ypfhlv] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sidebar-header-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -3px;
}

.soft-project-logo[b-6xi1ypfhlv] {
    display: block;
    max-width: 160px;
    margin: 10px auto;
    height: auto;
    opacity: 0.9;
}

/* User Info Section */
.user-info-panel[b-6xi1ypfhlv] {
    padding: 15px;
    background-color: var(--sidebar-bg-overlay);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--sidebar-border);
}

.info-academic-title[b-6xi1ypfhlv] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sidebar-sub-header-color);
    margin-bottom: 8px;
    border-bottom: 1px solid var(--sidebar-border);
    padding-bottom: 4px;
}

.user-details-container[b-6xi1ypfhlv] {
    display: flex;
    gap: 10px;
}

.user-data[b-6xi1ypfhlv] {
    flex: 1;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--sidebar-user-label);
}

.user-data strong[b-6xi1ypfhlv] {
    color: var(--sidebar-user-value);
    font-weight: 600;
}

.user-photo-container[b-6xi1ypfhlv] {
    margin: 0 auto;
    width: 70px;
    height: 80px;
    border: 2px solid var(--sidebar-border);
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
}

.user-photo[b-6xi1ypfhlv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-general-info[b-6xi1ypfhlv] {
    padding: 10px 15px;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--sidebar-border);
}

.info-row[b-6xi1ypfhlv] {
    margin-bottom: 6px;
    color: var(--sidebar-user-label);
}

.info-row strong[b-6xi1ypfhlv] {
    color: var(--sidebar-user-value);
    margin-right: 5px;
}

.welcome-badge[b-6xi1ypfhlv] {
    background-color: var(--sidebar-bg-overlay);
    color: var(--sidebar-text);
    text-align: center;
    padding: 6px;
    border-radius: 4px;
    margin: 10px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--sidebar-border);
}

.sede-selector[b-6xi1ypfhlv] {
    padding: 0 15px 15px;
}

.sede-label[b-6xi1ypfhlv] {
    display: block;
    font-size: 0.75rem;
    color: var(--sidebar-user-label);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.form-select-sm-custom[b-6xi1ypfhlv] {
    width: 100%;
    background-color: var(--sidebar-bg-overlay);
    border: 1px solid var(--sidebar-border);
    color: var(--sidebar-text);
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.form-select-sm-custom:focus[b-6xi1ypfhlv] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52,152,219,0.3);
}

.logout-container[b-6xi1ypfhlv] {
    padding: 0 15px 15px;
    text-align: right;
}

.btn-logout-custom[b-6xi1ypfhlv] {
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
    border: 1px solid #a93226;
    color: white;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s;
}

.btn-logout-custom:hover[b-6xi1ypfhlv] {
    background: linear-gradient(to bottom, #ec7063, #e74c3c);
    transform: translateY(-1px);
}

/* Modules Section */
.modules-header[b-6xi1ypfhlv] {
    background-color: var(--sidebar-bg-overlay);
    padding: 8px 15px;
    color: var(--sidebar-header-color);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--sidebar-border);
    border-bottom: 1px solid var(--sidebar-border);
}

.modules-tree[b-6xi1ypfhlv] {
    padding: 10px 0;
}

.tree-item[b-6xi1ypfhlv] {
    cursor: pointer;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--sidebar-text);
    transition: background-color 0.15s;
    user-select: none;
}

.tree-item:hover[b-6xi1ypfhlv] {
    background-color: var(--sidebar-hover);
    color: var(--sidebar-text);
}

.tree-icon[b-6xi1ypfhlv] {
    width: 18px;
    text-align: center;
    margin-right: 8px;
    color: #f1c40f; /* Folder color */
}

.tree-toggle[b-6xi1ypfhlv] {
    width: 14px;
    margin-right: 4px;
    font-size: 0.7rem;
    color: var(--sidebar-user-label);
    transition: transform 0.2s;
}

.tree-toggle.expanded[b-6xi1ypfhlv] {
    transform: rotate(90deg);
}

.tree-text[b-6xi1ypfhlv] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tree-children[b-6xi1ypfhlv] {
    padding-left: 20px;
    display: none;
    background-color: var(--sidebar-bg-overlay);
}

.tree-children.expanded[b-6xi1ypfhlv] {
    display: block;
}

.tree-item.leaf .tree-icon[b-6xi1ypfhlv] {
    color: #2ecc71; /* Item color */
}

.suros-watermark-bottom[b-6xi1ypfhlv] {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    opacity: 0.3;
}

.watermark-img[b-6xi1ypfhlv] {
    width: 80px;
    filter: grayscale(100%);
}

.tab-title[b-6xi1ypfhlv] {
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
    height: 36px !important;
}
/* /Presentation/Components/Pages/Monitoreo/TrazabilidadDashboard.razor.rz.scp.css */
.message-cell[b-2ycp8i0qu4] {
    position: relative;
    max-width: 500px;
    min-width: 300px;
}

.message-content[b-2ycp8i0qu4] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: help;
}

.message-popover[b-2ycp8i0qu4] {
    display: none;
    position: absolute;
    bottom: 80%;
    left: 0;
    width: max-content;
    max-width: 600px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 1050;
    white-space: normal;
    color: #212529;
    font-size: 0.9rem;
}

.message-cell:hover .message-popover[b-2ycp8i0qu4] {
    display: block;
}

.badge-op[b-2ycp8i0qu4] {
    font-weight: 600;
    border: 1px solid rgba(17, 24, 39, 0.12);
    padding: 0.45rem 0.6rem;
    border-radius: 0.5rem;
}

.badge-op-blue[b-2ycp8i0qu4] { background: #dbeafe; color: #1e3a8a; }
.badge-op-green[b-2ycp8i0qu4] { background: #dcfce7; color: #166534; }
.badge-op-red[b-2ycp8i0qu4] { background: #fee2e2; color: #991b1b; }
.badge-op-amber[b-2ycp8i0qu4] { background: #fef3c7; color: #92400e; }
.badge-op-cyan[b-2ycp8i0qu4] { background: #cffafe; color: #155e75; }
.badge-op-purple[b-2ycp8i0qu4] { background: #ede9fe; color: #5b21b6; }
.badge-op-gray[b-2ycp8i0qu4] { background: #f3f4f6; color: #374151; }
.badge-op-pink[b-2ycp8i0qu4] { background: #fce7f3; color: #9d174d; }

.tipo-op-filter-btn[b-2ycp8i0qu4] {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.tipo-op-card[b-2ycp8i0qu4] {
    cursor: pointer;
    border: 1px solid rgba(17, 24, 39, 0.06);
    transition: transform 80ms ease, box-shadow 80ms ease;
}

.tipo-op-card:hover[b-2ycp8i0qu4] {
    transform: translateY(-1px);
    box-shadow: 0 0.4rem 1rem rgba(0,0,0,0.08);
}

.tipo-op-card.selected[b-2ycp8i0qu4] {
    border-color: rgba(16, 185, 129, 0.55);
    box-shadow: 0 0 0 0.15rem rgba(16, 185, 129, 0.18);
}
/* /Presentation/Components/Pages/Paciente/NewPatientComponent.razor.rz.scp.css */
.disabled-input-container[b-3quvkzukyh] {
    pointer-events: none;
    opacity: 0.4;
}

.camera-overlay[b-3quvkzukyh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#patientCameraFeed[b-3quvkzukyh] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.camera-controls[b-3quvkzukyh] {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.btn-capture[b-3quvkzukyh] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
    border: 4px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.1s;
}

.btn-capture:active[b-3quvkzukyh] {
    transform: scale(0.95);
    background-color: #eee;
}

.btn-capture i[b-3quvkzukyh] {
    font-size: 24px;
    color: #333;
}

/* /Presentation/Components/Shared/CaptchaOverlay.razor.rz.scp.css */
.captcha-inline[b-pwveqjs091] {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 6px 0;
}

.captcha-prompt[b-pwveqjs091] {
  font-weight: 700;
  font-size: 1.05rem;
  background: #f6f8ff;
  padding: 8px 12px;
  border-radius: 8px;
  color: #3d3d3d;
  min-width: 120px;
  text-align: center;
}

.captcha-input[b-pwveqjs091] {
  max-width: 110px;
}

.captcha-actions[b-pwveqjs091] {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.captcha-actions .btn[b-pwveqjs091] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  line-height: 1;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 600;
  border-width: 1px;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}

.captcha-actions .btn:hover[b-pwveqjs091] {
  filter: brightness(0.98);
}

.captcha-actions .btn:focus-visible[b-pwveqjs091] {
  outline: 3px solid rgba(102,126,234,.35);
  outline-offset: 2px;
}

.captcha-btn i[b-pwveqjs091] {
  font-size: 16px;
  color:white !important; 
  margin-left:8px;
}

.captcha-btn.compact[b-pwveqjs091] {
    height: 36px;
    padding: 0 12px;
    color: white !important;
    text-align:center;
}

@media (max-width: 420px) {
  .captcha-actions[b-pwveqjs091] { gap: 10px; }
  .captcha-actions .btn[b-pwveqjs091] { height: 36px; padding: 0 12px; }
  .captcha-input[b-pwveqjs091] { max-width: 100px; }
}
/* /Presentation/Components/Shared/OfflineSync.razor.rz.scp.css */
@keyframes blink-b-5tac20hnrb {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
.blinking[b-5tac20hnrb] {
    animation: blink-b-5tac20hnrb 1s infinite;
}
/* /Presentation/Components/Shared/OtpEvidence.razor.rz.scp.css */
/* Estilos aislados para el componente OtpEvidence (mecanismo OTP) */
.otp-section[b-2r9b28q42c] {
  margin: 10px auto !important;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
}

.otp-title[b-2r9b28q42c] {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.otp-actions[b-2r9b28q42c] {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.otp-actions .btn[b-2r9b28q42c] {
  width: 100%;
}

.otp-actions span[b-2r9b28q42c] {
  color: #666;
}

.otp-actions .btn.btn-primary[b-2r9b28q42c] {
  color: #fff !important;
}

.otp-actions .btn.btn-primary i[b-2r9b28q42c],
.otp-actions .btn.btn-primary span[b-2r9b28q42c] {
  color: #fff !important;
}

.otp-ttl[b-2r9b28q42c] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ttl-info-button[b-2r9b28q42c] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #666;
  padding: 0 4px;
}

.ttl-info-button:focus[b-2r9b28q42c] {
  outline: 2px solid #80bdff;
  outline-offset: 2px;
}

.ttl-popover[b-2r9b28q42c] {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 10px;
  width: min(320px, 90vw);
  z-index: 1000;
}

.ttl-popover-header[b-2r9b28q42c] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: 600;
}

.ttl-popover-close[b-2r9b28q42c] {
  background: transparent;
  border: none;
  color: #666;
}

.ttl-popover-body[b-2r9b28q42c] {
  color: #555;
  font-size: 0.95rem;
}

.ttl-overlay[b-2r9b28q42c] {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 900;
}

.otp-display[b-2r9b28q42c] {
  margin-top: 12px;
}

.otp-info[b-2r9b28q42c] {
  font-size: 1.1rem;
}

.otp-code-row[b-2r9b28q42c] {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.otp-code-label[b-2r9b28q42c] {
  font-weight: 600;
  color: #333;
}

.otp-display strong[b-2r9b28q42c] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(135deg, #052e6d 0%, #3260bd 50%, #052e6d 100%);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 6px 12px;
  box-shadow: 0 4px 12px rgba(13,110,253,0.35);
  text-shadow: 0 1px 1px rgba(0,0,0,0.25);
  margin: 0 auto !important;
}

.otp-expiration[b-2r9b28q42c] {
  display: block;
  margin-left: 0;
  margin-top: 6px;
  color: #888;
}

.evidence-form[b-2r9b28q42c] {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.evidence-hint[b-2r9b28q42c] {
  color: #666;
}

.evidence-infograph[b-2r9b28q42c] {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #555;
  font-size: 0.95rem;
}

.evidence-infograph .info-item[b-2r9b28q42c] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.evidence-infograph .info-item i[b-2r9b28q42c] {
  color: #28a745 !important;
}

.evidence-actions[b-2r9b28q42c] {
  display: flex;
  gap: 10px;
  align-items: center;
}

.evidence-actions .btn.btn-success[b-2r9b28q42c] {
  color: #fff !important;
}

.evidence-actions .btn.btn-success i[b-2r9b28q42c],
.evidence-actions .btn.btn-success span[b-2r9b28q42c] {
  color: #fff !important;
}

.otp-actions .btn.btn-primary:disabled i[b-2r9b28q42c],
.otp-actions .btn.btn-primary:disabled span[b-2r9b28q42c] {
  color: #fff !important;
}

.otp-ttl .ttl-info-button i[b-2r9b28q42c] {
  color: #28a745 !important;
}

.message-success[b-2r9b28q42c] {
  color: #28a745;
}

.message-error[b-2r9b28q42c] {
  color: #dc3545;
}

@media (max-width: 576px) {
  .otp-actions[b-2r9b28q42c] {
    flex-direction: column;
    align-items: stretch;
  }

  .otp-actions .btn[b-2r9b28q42c] {
    width: 100%;
  }

  .otp-display .otp-info[b-2r9b28q42c] {
    font-size: 1rem;
  }
}
