/* /Components/HumedadesHistorialDialog.razor.rz.scp.css */
/* Contenedor del timeline */
.timeline-container[b-mbfo64dij3] {
    max-height: 450px;
    overflow-y: auto;
}

/* Estilo para el scroll del historial */
.timeline-container[b-mbfo64dij3]::-webkit-scrollbar {
    width: 6px;
}

.timeline-container[b-mbfo64dij3]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.timeline-container[b-mbfo64dij3]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.timeline-container[b-mbfo64dij3]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Card de humedad */
[b-mbfo64dij3] .humedad-card {
    border-left: 3px solid var(--mud-palette-primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[b-mbfo64dij3] .humedad-card:hover {
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Valores de humedad */
.humedad-value[b-mbfo64dij3] {
    font-weight: 700;
    font-size: 1.25rem;
}

/* Stats container fijo */
.stats-container-fixed[b-mbfo64dij3] {
    position: sticky;
    bottom: 0;
    background: var(--mud-palette-background-grey);
    border-radius: 8px;
    margin-top: 16px;
}

/* Media queries para móviles */
@media (max-width: 600px) {
    /* Header responsive */
    .header-responsive[b-mbfo64dij3] {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .dialog-title[b-mbfo64dij3] {
        font-size: 1.1rem;
        display: flex;
        align-items: center;
    }
    
    .secador-name[b-mbfo64dij3] {
        font-size: 0.8rem;
        margin-top: 2px;
    }
    
    /* Timeline más compacto */
    [b-mbfo64dij3] .custom-timeline {
        padding-left: 0;
    }
    
    [b-mbfo64dij3] .custom-timeline .mud-timeline-item {
        padding-bottom: 16px !important;
    }
    
    /* Fechas más compactas */
    .fecha-container[b-mbfo64dij3] {
        min-width: 45px;
        max-width: 50px;
        margin-right: 8px;
    }
    
    .fecha-text[b-mbfo64dij3] {
        font-size: 0.7rem;
        font-weight: 600;
    }
    
    .hora-text[b-mbfo64dij3] {
        font-size: 0.65rem;
    }
    
    /* Card de humedad responsive */
    [b-mbfo64dij3] .humedad-card {
        padding: 8px !important;
    }
    
    .humedad-value[b-mbfo64dij3] {
        font-size: 1.1rem;
    }
    
    .usuario-text[b-mbfo64dij3] {
        font-size: 0.7rem;
    }
    
    /* Chip de estado más pequeño */
    [b-mbfo64dij3] .estado-chip {
        font-size: 0.65rem;
        height: 20px;
        padding: 0 6px;
    }
    
    [b-mbfo64dij3] .estado-chip .mud-chip-content {
        padding: 0 4px;
    }
    
    /* Stats container responsivo */
    .stats-container-fixed[b-mbfo64dij3] {
        padding: 12px !important;
        margin-top: 16px;
    }
    
    [b-mbfo64dij3] .stats-container-fixed .mud-typography-h6 {
        font-size: 1rem;
    }
    
    [b-mbfo64dij3] .stats-container-fixed .mud-typography-caption {
        font-size: 0.7rem;
    }
    
    /* Timeline container con menos altura en móvil */
    .timeline-container[b-mbfo64dij3] {
        max-height: 350px;
    }
}

@media (max-width: 400px) {
    .dialog-title[b-mbfo64dij3] {
        font-size: 1rem;
    }
    
    .humedad-value[b-mbfo64dij3] {
        font-size: 1rem;
    }
    
    .fecha-text[b-mbfo64dij3] {
        font-size: 0.65rem;
    }
    
    .hora-text[b-mbfo64dij3] {
        font-size: 0.6rem;
    }
    
    .timeline-container[b-mbfo64dij3] {
        max-height: 300px;
    }

}
/* /Components/SecadorCard.razor.rz.scp.css */
.secador-card[b-6sguezwu2k] {
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
    height: 100%;
    min-height: 420px;
}

.secador-card.disponible[b-6sguezwu2k] {
    border-left-color: var(--mud-palette-primary);
    display: flex;
    align-items: center;
}

[b-6sguezwu2k] .secador-card.disponible .mud-card-content {
    width: 100%;
}

.secador-card.proceso-secado[b-6sguezwu2k] {
    border-left-color: var(--mud-palette-warning);
}

.secador-card.proceso-llenado[b-6sguezwu2k] {
    border-left-color: var(--mud-palette-secondary);
}

.secador-card.listo-desgrane[b-6sguezwu2k] {
    border-left-color: var(--mud-palette-success);
}

.secador-card.proceso-desgrane[b-6sguezwu2k] {
    border-left-color: var(--mud-palette-info);
}

.secador-card:hover[b-6sguezwu2k] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.humedad-highlight[b-6sguezwu2k] {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
}

/* Responsive: ajustar altura mínima en pantallas pequeñas */
@media (max-width: 960px) {
    .secador-card[b-6sguezwu2k] {
        min-height: 380px;
    }
}

@media (max-width: 600px) {
    .secador-card[b-6sguezwu2k] {
        min-height: 350px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-fjk9rfh9tt] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-fjk9rfh9tt] {
    flex: 1;
}

.sidebar[b-fjk9rfh9tt] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-fjk9rfh9tt] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-fjk9rfh9tt]  a, .top-row[b-fjk9rfh9tt]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-fjk9rfh9tt]  a:hover, .top-row[b-fjk9rfh9tt]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-fjk9rfh9tt]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-fjk9rfh9tt] {
        justify-content: space-between;
    }

    .top-row[b-fjk9rfh9tt]  a, .top-row[b-fjk9rfh9tt]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-fjk9rfh9tt] {
        flex-direction: row;
    }

    .sidebar[b-fjk9rfh9tt] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-fjk9rfh9tt] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-fjk9rfh9tt]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-fjk9rfh9tt], article[b-fjk9rfh9tt] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xtdri9awfc] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-xtdri9awfc] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-xtdri9awfc] {
    font-size: 1.1rem;
}

.bi[b-xtdri9awfc] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-xtdri9awfc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-xtdri9awfc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xtdri9awfc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-xtdri9awfc] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xtdri9awfc] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xtdri9awfc] {
        padding-bottom: 1rem;
    }

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

.nav-item[b-xtdri9awfc]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

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

@media (min-width: 641px) {
    .navbar-toggler[b-xtdri9awfc] {
        display: none;
    }

    .collapse[b-xtdri9awfc] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-xtdri9awfc] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Secado/SecadoresViewer.razor.rz.scp.css */
/* Animación de pulso para el indicador de conexión */
@keyframes pulse-b-diw63i0u3d {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

[b-diw63i0u3d] .pulse-animation .mud-chip-icon {
    animation: pulse-b-diw63i0u3d 2s ease-in-out infinite;
}

/* Estilos para el header */
.header-title[b-diw63i0u3d] {
    font-weight: 600;
}

.title-section[b-diw63i0u3d] {
    width: 100%;
}

.chips-section[b-diw63i0u3d] {
    width: 100%;
}

/* Media queries para pantallas pequeñas */
@media (max-width: 960px) {
    .header-title[b-diw63i0u3d] {
        font-size: 1.5rem;
    }
    
    .chips-section[b-diw63i0u3d] {
        justify-content: flex-start !important;
    }
}

@media (max-width: 600px) {
    .header-title[b-diw63i0u3d] {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    [b-diw63i0u3d] .chips-section .mud-chip {
        font-size: 0.75rem;
    }
    
    [b-diw63i0u3d] .chips-section .mud-chip-content {
        padding: 4px 8px;
    }
    
    [b-diw63i0u3d] .title-section .mud-icon-root {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .header-title[b-diw63i0u3d] {
        font-size: 1.1rem;
    }
    
    [b-diw63i0u3d] .chips-section .mud-chip {
        font-size: 0.7rem;
        height: 24px;
    }
}
/* /Pages/Secado/SecadoresViewerSelector.razor.rz.scp.css */
/* Animaciones sutiles para transiciones */
[b-zof4r5pf65] .mud-paper {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[b-zof4r5pf65] .mud-paper:hover {
    transform: translateY(-2px);
}

/* Estilo para el botón principal */
[b-zof4r5pf65] .mud-button-filled-primary {
    transition: all 0.3s ease;
}

[b-zof4r5pf65] .mud-button-filled-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 110, 0, 0.3);
}

/* Select personalizado */
[b-zof4r5pf65] .mud-select {
    transition: all 0.2s ease;
}

[b-zof4r5pf65] .mud-select:hover {
    border-color: var(--mud-palette-primary);
}

/* Mejoras responsive */
@media (max-width: 960px) {
    [b-zof4r5pf65] .mud-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    [b-zof4r5pf65] .mud-paper {
        padding: 16px !important;
    }
}

@media (max-width: 600px) {
    /* Header más compacto en móvil */
    [b-zof4r5pf65] .mud-typography-h3 {
        font-size: 1.75rem !important;
    }
    
    [b-zof4r5pf65] .mud-typography-subtitle1 {
        font-size: 0.9rem !important;
    }
    
    /* Botón más pequeño en móvil */
    [b-zof4r5pf65] .mud-button-root {
        width: 100%;
    }
}

/* Animación de entrada */
@keyframes fadeInUp-b-zof4r5pf65 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[b-zof4r5pf65] .mud-grid-item {
    animation: fadeInUp-b-zof4r5pf65 0.4s ease-out;
}

[b-zof4r5pf65] .mud-grid-item:nth-child(2) {
    animation-delay: 0.1s;
}

/* Estilo para el scroll suave */
html[b-zof4r5pf65] {
    scroll-behavior: smooth;
}
