/* /Components/HelpComponent.razor.rz.scp.css */
.help-modal .k-window-titlebar[b-5zth0z63cb] {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 0 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .help-modal .k-window-titlebar .k-window-actions[b-5zth0z63cb] {
        margin: 0;
    }

    .help-modal .k-window-titlebar .k-window-action .k-icon[b-5zth0z63cb] {
        font-size: 18px;
        color: #333;
    }

.help-modal .k-window-content[b-5zth0z63cb] {
    padding: 20px;
}

.help-content[b-5zth0z63cb] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    width: 100%;
    max-width: 600px;
    max-height: 60vh;
    overflow-y: auto;
    margin: 0 auto;
}

    .help-content h3[b-5zth0z63cb],
    .help-content h4[b-5zth0z63cb] {
        margin-top: 1em;
    }

    .help-content ul[b-5zth0z63cb],
    .help-content ol[b-5zth0z63cb] {
        margin-left: 1.5em;
    }

    .help-content code[b-5zth0z63cb] {
        background-color: #eef;
        padding: 2px 4px;
        border-radius: 4px;
    }

@media (max-width: 1024px) {
    .help-modal[b-5zth0z63cb] {
        width: 80vw !important;
    }
}

@media (max-width: 768px) {
    .help-modal[b-5zth0z63cb] {
        width: 90vw !important;
    }

    .help-content[b-5zth0z63cb] {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .help-modal[b-5zth0z63cb] {
        width: 95vw !important;
    }

    .help-content[b-5zth0z63cb] {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 320px) {
    .help-modal[b-5zth0z63cb] {
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
    }

    .help-content[b-5zth0z63cb] {
        font-size: 13px;
        padding: 10px;
    }
}
/* /Components/NotAuthorizedComponent.razor.rz.scp.css */
.not-authorized-container[b-zlxz40hgqb] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    overflow: hidden;
}

.not-authorized-backdrop[b-zlxz40hgqb] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float-b-zlxz40hgqb 20s ease-in-out infinite;
}

@keyframes float-b-zlxz40hgqb {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

.not-authorized-content[b-zlxz40hgqb] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
    padding: 0;
    text-align: center;
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: slideIn-b-zlxz40hgqb 0.6s ease-out;
}

@keyframes slideIn-b-zlxz40hgqb {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.not-authorized-header[b-zlxz40hgqb] {
    padding: 3rem 2rem 1rem;
    position: relative;
}

    .not-authorized-header[b-zlxz40hgqb]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #017DC0, #015a91, #017DC0);
        background-size: 200% 100%;
        animation: shimmer-b-zlxz40hgqb 3s ease-in-out infinite;
    }

@keyframes shimmer-b-zlxz40hgqb {
    0%, 100% {
        background-position: 200% 0;
    }

    50% {
        background-position: -200% 0;
    }
}

.not-authorized-icon[b-zlxz40hgqb] {
    margin-bottom: 1.5rem;
}

.icon-circle[b-zlxz40hgqb] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #017DC0 0%, #015a91 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: pulse-b-zlxz40hgqb 2s ease-in-out infinite;
}

@keyframes pulse-b-zlxz40hgqb {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.icon-circle[b-zlxz40hgqb]::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #017DC0, #015a91);
    z-index: -1;
    opacity: 0.3;
    animation: rotate-b-zlxz40hgqb 4s linear infinite;
}

@keyframes rotate-b-zlxz40hgqb {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.icon-circle i[b-zlxz40hgqb] {
    font-size: 2rem;
    color: white;
    z-index: 1;
}

.not-authorized-title[b-zlxz40hgqb] {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    letter-spacing: -0.025em;
}

.not-authorized-message[b-zlxz40hgqb] {
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.not-authorized-body[b-zlxz40hgqb] {
    padding: 2rem;
    background: rgba(248, 246, 241, 0.5);
}

.action-buttons[b-zlxz40hgqb] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-action[b-zlxz40hgqb] {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.025em;
}

    .btn-action[b-zlxz40hgqb]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn-action:hover[b-zlxz40hgqb]::before {
        left: 100%;
    }

.primary-action[b-zlxz40hgqb] {
    background: linear-gradient(135deg, #017DC0 0%, #015a91 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(1, 125, 192, 0.3);
}

    .primary-action:hover[b-zlxz40hgqb] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(1, 125, 192, 0.4);
        background: linear-gradient(135deg, #015a91 0%, #014066 100%);
    }

.secondary-action[b-zlxz40hgqb] {
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .secondary-action:hover[b-zlxz40hgqb] {
        background: #f8f6f1;
        border-color: #cbd5e0;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        color: #2d3748;
    }

.not-authorized-footer[b-zlxz40hgqb] {
    padding: 1.5rem 2rem;
    background: rgba(240, 237, 230, 0.7);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.help-text[b-zlxz40hgqb] {
    color: #718096;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .help-text i[b-zlxz40hgqb] {
        opacity: 0.7;
    }

/* Responsive Design */
@media (max-width: 576px) {
    .not-authorized-container[b-zlxz40hgqb] {
        padding: 1rem;
        min-height: 60vh;
    }

    .not-authorized-content[b-zlxz40hgqb] {
        margin: 0;
        border-radius: 16px;
    }

    .not-authorized-header[b-zlxz40hgqb] {
        padding: 2rem 1.5rem 1rem;
    }

    .not-authorized-body[b-zlxz40hgqb] {
        padding: 1.5rem;
    }

    .action-buttons[b-zlxz40hgqb] {
        flex-direction: column;
        align-items: center;
    }

    .btn-action[b-zlxz40hgqb] {
        width: 100%;
        max-width: 240px;
    }

    .icon-circle[b-zlxz40hgqb] {
        width: 60px;
        height: 60px;
    }

        .icon-circle i[b-zlxz40hgqb] {
            font-size: 1.5rem;
        }

    .not-authorized-title[b-zlxz40hgqb] {
        font-size: 1.5rem;
    }

    .not-authorized-message[b-zlxz40hgqb] {
        font-size: 0.9rem;
    }
}

/* Light mode support (tema principal) */
@media (prefers-color-scheme: light) {
    .not-authorized-content[b-zlxz40hgqb] {
        background: rgba(255, 255, 255, 0.95);
        color: #2d3748;
    }

    .not-authorized-title[b-zlxz40hgqb] {
        color: #2d3748;
    }

    .not-authorized-message[b-zlxz40hgqb] {
        color: #4a5568;
    }

    .not-authorized-body[b-zlxz40hgqb] {
        background: rgba(248, 246, 241, 0.5);
    }

    .secondary-action[b-zlxz40hgqb] {
        background: white;
        border-color: #e2e8f0;
        color: #4a5568;
    }

        .secondary-action:hover[b-zlxz40hgqb] {
            background: #f8f6f1;
            border-color: #cbd5e0;
        }

    .not-authorized-footer[b-zlxz40hgqb] {
        background: rgba(240, 237, 230, 0.7);
        border-top-color: rgba(226, 232, 240, 0.8);
    }

    .help-text[b-zlxz40hgqb] {
        color: #718096;
    }
}

/* Dark mode support (opcional) */
@media (prefers-color-scheme: dark) {
    .not-authorized-container[b-zlxz40hgqb] {
        background: linear-gradient(135deg, rgba(248, 246, 241, 0.5) 0%, #f8f6f1 100%);
    }

    .not-authorized-content[b-zlxz40hgqb] {
        background: rgba(26, 32, 44, 0.95);
        color: #e2e8f0;
    }

    .not-authorized-title[b-zlxz40hgqb] {
        color: #f7fafc;
    }

    .not-authorized-message[b-zlxz40hgqb] {
        color: #cbd5e0;
    }

    .not-authorized-body[b-zlxz40hgqb] {
        background: rgba(45, 55, 72, 0.5);
    }

    .icon-circle[b-zlxz40hgqb] {
        background: linear-gradient(135deg, #017DC0 0%, #015a91 100%);
    }

        .icon-circle[b-zlxz40hgqb]::before {
            background: linear-gradient(135deg, #017DC0, #015a91);
        }

    .primary-action[b-zlxz40hgqb] {
        background: linear-gradient(135deg, #017DC0 0%, #015a91 100%);
        box-shadow: 0 4px 15px rgba(1, 125, 192, 0.3);
    }

        .primary-action:hover[b-zlxz40hgqb] {
            background: linear-gradient(135deg, #015a91 0%, #014066 100%);
            box-shadow: 0 8px 25px rgba(1, 125, 192, 0.4);
        }

    .secondary-action[b-zlxz40hgqb] {
        background: rgba(45, 55, 72, 0.8);
        border-color: #4a5568;
        color: #e2e8f0;
    }

        .secondary-action:hover[b-zlxz40hgqb] {
            background: rgba(45, 55, 72, 1);
            border-color: #718096;
        }

    .not-authorized-footer[b-zlxz40hgqb] {
        background: rgba(23, 25, 35, 0.7);
        border-top-color: rgba(74, 85, 104, 0.8);
    }

    .help-text[b-zlxz40hgqb] {
        color: #a0aec0;
    }
}
/* /Components/NotificationComponent.razor.rz.scp.css */
.notification-icon[b-2ruqdfcgsc] {
    position: relative;
    display: inline-block;
    font-size: 24px;
    cursor: pointer;
    margin: 5px;
}

.notification-badge[b-2ruqdfcgsc] {
    position: absolute;
    top: 5px;
    right: -5px;
    min-width: 14px;
    height: 14px;
    line-height: 14px;
    border: 1px solid #ef5350;
    border-radius: 50%;
    background-color: #ef5350;
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    padding: 0 2px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.notification-list[b-2ruqdfcgsc] {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 340px;
    overflow-y: auto;
}

    .notification-list li[b-2ruqdfcgsc] {
        padding: 8px 10px;
        border-bottom: 1px solid #e0e0e0;
        transition: background-color 0.2s ease;
    }

.notification-unread[b-2ruqdfcgsc] {
    background-color: rgba(1, 125, 192, 0.1);
    border-left: 3px solid #017dc0;
}

.notification-read[b-2ruqdfcgsc] {
    background-color: white;
    border-left: 3px solid transparent;
    opacity: 0.8;
}

.notification-list li:hover[b-2ruqdfcgsc] {
    background-color: rgba(1, 125, 192, 0.05);
}

.notification-unread .notif-time[b-2ruqdfcgsc],
.notification-read .notif-time[b-2ruqdfcgsc] {
    color: #000;
}

.notification-unread .notif-message[b-2ruqdfcgsc],
.notification-read .notif-message[b-2ruqdfcgsc] {
    color: #017dc0;
}

.notif-time[b-2ruqdfcgsc] {
    margin-right: 5px;
}

.notif-message[b-2ruqdfcgsc] {
    font-size: 1.2em;
}

.no-notifications[b-2ruqdfcgsc] {
    text-align: center;
    color: #424242;
    padding: 20px;
    font-style: italic;
}

.notification-actions[b-2ruqdfcgsc] {
    display: flex;
    justify-content: flex-end;
    padding: 5px 10px;
    border-bottom: 1px solid #e0e0e0;
}

:global(.modal__notifications .k-window-titlebar)[b-2ruqdfcgsc] {
    background-color: #017dc0;
    color: white;
}

:global(.modal__notifications .k-window-content)[b-2ruqdfcgsc] {
    padding: 10px;
    background-color: white;
}

.modal__notifications .notification-actions .btn-primary[b-2ruqdfcgsc] {
    background-color: #017dc0 !important;
    border-color: #017dc0 !important;
    color: white !important;
}

    .modal__notifications .notification-actions .btn-primary:hover[b-2ruqdfcgsc] {
        background-color: #424242 !important;
        border-color: #424242 !important;
        color: white !important;
    }

@media (max-width: 991.98px) {
    .notification-icon[b-2ruqdfcgsc] {
        display: none !important;
    }
}
/* /Components/PerformanceCalculatorComponent.razor.rz.scp.css */
.performance-calculator-container[b-4387oiyiv7] {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.modern-form .form-field[b-4387oiyiv7] {
    margin-bottom: 1rem;
}

.modern-form .form-label[b-4387oiyiv7] {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.result-section[b-4387oiyiv7] {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.result-section h4[b-4387oiyiv7] {
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1rem;
}

.result-item[b-4387oiyiv7] {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.result-item:last-of-type[b-4387oiyiv7] {
    border-bottom: none;
}

.result-label[b-4387oiyiv7] {
    color: #555;
}

.result-value[b-4387oiyiv7] {
    font-weight: bold;
    color: #000;
}

.result-note[b-4387oiyiv7] {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
}
/* /Components/QRScannerComponent.razor.rz.scp.css */
.qr-scanner-container[b-nnkl6m3sp3] {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.camera-container[b-nnkl6m3sp3] {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.camera-preview[b-nnkl6m3sp3] {
    position: relative;
    width: 100%;
    height: 300px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-preview video[b-nnkl6m3sp3] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    border-radius: 4px;
   
    transform: none;
}

.scan-overlay[b-nnkl6m3sp3] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.scan-frame[b-nnkl6m3sp3] {
    position: relative;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.scan-corners[b-nnkl6m3sp3] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.corner[b-nnkl6m3sp3] {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #00ff00;
}

.corner.top-left[b-nnkl6m3sp3] {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}

.corner.top-right[b-nnkl6m3sp3] {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
}

.corner.bottom-left[b-nnkl6m3sp3] {
    bottom: -3px;
    left: -3px;
    border-right: none;
    border-top: none;
}

.corner.bottom-right[b-nnkl6m3sp3] {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

.scan-line[b-nnkl6m3sp3] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    animation: scan-animation-b-nnkl6m3sp3 2s linear infinite;
}

@keyframes scan-animation-b-nnkl6m3sp3 {
    0% { transform: translateY(0); }
    100% { transform: translateY(196px); }
}

.scan-instruction[b-nnkl6m3sp3] {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
}

.camera-controls[b-nnkl6m3sp3] {
    padding: 16px;
    background: white;
}

.control-row[b-nnkl6m3sp3] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.scan-button[b-nnkl6m3sp3] {
    flex: 1;
    max-width: 200px;
}

.switch-camera-btn[b-nnkl6m3sp3] {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manual-input-section[b-nnkl6m3sp3] {
    border-top: 1px solid #dee2e6;
    padding-top: 16px;
}

.input-group[b-nnkl6m3sp3] {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.input-group .form-control[b-nnkl6m3sp3] {
    flex: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .qr-scanner-container[b-nnkl6m3sp3] {
        margin: 0;
        border-radius: 0;
    }
    
    .camera-preview[b-nnkl6m3sp3] {
        height: 300px;
        min-height: 250px;
    }
    
    .camera-preview video[b-nnkl6m3sp3] {
        min-height: 250px;
       
        -webkit-transform: none;
        transform: none;
    }
    
    .scan-frame[b-nnkl6m3sp3] {
        width: 150px;
        height: 150px;
    }
    
    .control-row[b-nnkl6m3sp3] {
        flex-direction: column;
        gap: 12px;
    }
    
    .scan-button[b-nnkl6m3sp3] {
        width: 100%;
        max-width: none;
    }
    
    .switch-camera-btn[b-nnkl6m3sp3] {
        width: 100%;
        height: 40px;
    }
    
    .input-group[b-nnkl6m3sp3] {
        flex-direction: column;
    }
}

 
@media (max-width: 480px) {
    .camera-preview[b-nnkl6m3sp3] {
        height: 280px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .camera-preview video[b-nnkl6m3sp3] {
        border-radius: 8px;
     
        -webkit-transform: none;
        transform: none;
        object-position: center;
    }
}

/* iOS   */
@supports (-webkit-touch-callout: none) {
    .camera-preview video[b-nnkl6m3sp3] {
        -webkit-playsinline: true;
        playsinline: true;
    }
}

 
.mobile-manual-input[b-nnkl6m3sp3] {
    margin-top: 8px;
}

.manual-input-collapsible[b-nnkl6m3sp3] {
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f8f9fa;
}

.manual-input-toggle[b-nnkl6m3sp3] {
    padding: 8px 12px;
    cursor: pointer;
    user-select: none;
    background: #e9ecef;
    border-radius: 6px 6px 0 0;
    font-weight: 500;
    font-size: 14px;
    color: #495057;
    list-style: none;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.manual-input-toggle:hover[b-nnkl6m3sp3] {
    background: #dee2e6;
}

.manual-input-toggle[b-nnkl6m3sp3]::-webkit-details-marker {
    display: none;
}

.manual-input-toggle[b-nnkl6m3sp3]::before {
    content: '▶';
    margin-right: 8px;
    transition: transform 0.2s;
    font-size: 10px;
}

.manual-input-collapsible[open] .manual-input-toggle[b-nnkl6m3sp3]::before {
    transform: rotate(90deg);
}

.manual-input-content[b-nnkl6m3sp3] {
    padding: 12px;
    border-top: 1px solid #ddd;
}

 
@media (max-width: 768px) {
    .qr-scanner-container[b-nnkl6m3sp3] {
        margin: 0;
        border-radius: 4px;
    }
    
    .camera-container[b-nnkl6m3sp3] {
        border-radius: 4px;
    }
    
    .camera-preview[b-nnkl6m3sp3] {
        height: 250px;
        border-radius: 4px 4px 0 0;
    }
    
    .camera-controls[b-nnkl6m3sp3] {
        padding: 12px;
    }
    
    .control-row[b-nnkl6m3sp3] {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
    }
    
    .scan-button[b-nnkl6m3sp3] {
        flex: 1;
        max-width: 150px;
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .switch-camera-btn[b-nnkl6m3sp3] {
        width: 40px;
        height: 40px;
        min-width: 40px;
        flex: none;
    }
    
    .mobile-manual-input[b-nnkl6m3sp3] {
        margin-top: 8px;
    }
    
    .manual-input-toggle[b-nnkl6m3sp3] {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .manual-input-content[b-nnkl6m3sp3] {
        padding: 8px;
    }
}

 
@media (max-width: 480px) {
    .camera-preview[b-nnkl6m3sp3] {
        height: 220px;
    }
    
    .camera-controls[b-nnkl6m3sp3] {
        padding: 10px;
    }
    
    .scan-button[b-nnkl6m3sp3] {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .switch-camera-btn[b-nnkl6m3sp3] {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }
    
    .switch-camera-btn i[b-nnkl6m3sp3] {
        font-size: 14px;
    }
}

@media (prefers-contrast: high) {
    .scan-overlay[b-nnkl6m3sp3] {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .corner[b-nnkl6m3sp3] {
        border-color: #ffffff;
    }
    
    .scan-line[b-nnkl6m3sp3] {
        background: linear-gradient(90deg, transparent, #ffffff, transparent);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scan-line[b-nnkl6m3sp3] {
        animation: none;
        opacity: 0.7;
    }
}
/* /Components/ScheduleComponent.razor.rz.scp.css */
.schedule-container[b-p9bcs9sqs1] {
    padding: 10px;
    width: 100%;
    overflow-x: auto;
}

    .schedule-container h2[b-p9bcs9sqs1] {
        color: #333;
        font-size: 18px;
        margin-bottom: 10px;
    }

.table-responsive[b-p9bcs9sqs1] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.schedule-table[b-p9bcs9sqs1] {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}

    .schedule-table td[b-p9bcs9sqs1],
    .schedule-table th[b-p9bcs9sqs1] {
        border: 1px solid #ddd;
        text-align: center;
        padding: 8px;
        cursor: pointer;
    }

    .schedule-table th[b-p9bcs9sqs1] {
        background-color: #f2f2f2;
        color: #333;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .schedule-table td[b-p9bcs9sqs1] {
        background-color: #fff;
    }

        .schedule-table td.selected[b-p9bcs9sqs1] {
            background-color: #0099cc;
            color: white;
        }

        .schedule-table td:hover[b-p9bcs9sqs1],
        .schedule-table th:hover[b-p9bcs9sqs1] {
            opacity: 0.8;
        }

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .schedule-container.mobile[b-p9bcs9sqs1] {
        transform: rotate(-90deg);
        transform-origin: top left;
        width: 100vh;
        height: 100vw;
        position: absolute;
        top: 100vh;
        left: 0;
        overflow: auto;
    }

        .schedule-container.mobile .table-responsive[b-p9bcs9sqs1] {
            width: 100%;
            height: 100%;
            overflow: auto;
        }

        .schedule-container.mobile .schedule-table[b-p9bcs9sqs1] {
            width: auto;
            height: auto;
            margin: 10px;
        }

        .schedule-container.mobile th[b-p9bcs9sqs1],
        .schedule-container.mobile td[b-p9bcs9sqs1] {
            padding: 4px;
            font-size: 10px;
        }

            .schedule-container.mobile th:first-child[b-p9bcs9sqs1],
            .schedule-container.mobile td:first-child[b-p9bcs9sqs1] {
                position: sticky;
                left: 0;
                z-index: 20;
                background-color: #f2f2f2;
            }

        .schedule-container.mobile thead th[b-p9bcs9sqs1] {
            position: sticky;
            top: 0;
            z-index: 30;
            background-color: #f2f2f2;
        }

        .schedule-container.mobile th:first-child[b-p9bcs9sqs1] {
            z-index: 40;
        }
}
/* /Components/SessionTimerComponent.razor.rz.scp.css */
.session-timer[b-s7d2d2rqj9] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #e57373;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(229, 115, 115, 0.45);
    user-select: none;
    pointer-events: auto;
    min-width: 0;
    width: fit-content;
    max-width: calc(100vw - 40px);
}

.session-timer__toggle[b-s7d2d2rqj9] {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: auto;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.session-timer--expanded .session-timer__toggle[b-s7d2d2rqj9] {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.session-timer__summary[b-s7d2d2rqj9] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.session-timer__chevron[b-s7d2d2rqj9] {
    font-size: 0.9rem;
    line-height: 1;
}

.session-timer__icon[b-s7d2d2rqj9] {
    font-size: 0.95rem;
    line-height: 1;
}

.session-timer__time[b-s7d2d2rqj9] {
    font-variant-numeric: tabular-nums;
    min-width: 3.2rem;
    text-align: center;
}

.session-timer__details[b-s7d2d2rqj9] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.session-timer__detail-icon[b-s7d2d2rqj9] {
    font-size: 0.9rem;
    line-height: 1;
}

.session-timer__detail-text[b-s7d2d2rqj9] {
    letter-spacing: 0;
    font-weight: 500;
    word-break: break-all;
}

@media (max-width: 768px) {
    .session-timer[b-s7d2d2rqj9] {
        bottom: 60px;
        right: 12px;
        max-width: calc(100vw - 24px);
    }
}
/* /Components/WizardGroupComponent.razor.rz.scp.css */
.wizard-modal-modern .k-window[b-ery9d8ze44] {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.wizard-container[b-ery9d8ze44] {
    display: flex;
    height: 100%;
    position: relative;
}

.step-progress-indicator[b-ery9d8ze44] {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--blue);
    transition: width 0.3s ease;
    z-index: 1000;
}

.wizard-sidebar[b-ery9d8ze44] {
    width: 240px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 1.5rem 1rem;
    position: relative;
    flex-shrink: 0;
}

.wizard-steps-vertical[b-ery9d8ze44] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wizard-footer-inline[b-ery9d8ze44] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0 1rem 0;
    margin-top: auto;
    border-top: 1px solid #e9ecef;
    background: white;
    border-radius: 0 0 8px 8px;
}

.footer-left[b-ery9d8ze44], .footer-right[b-ery9d8ze44] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-next[b-ery9d8ze44], .btn-finish[b-ery9d8ze44], .btn-back[b-ery9d8ze44], .btn-cancel[b-ery9d8ze44] {
    min-width: 100px;
    height: 38px;
}

.step-item[b-ery9d8ze44] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
}

    .step-item:hover[b-ery9d8ze44] {
        background: rgba(255, 255, 255, 0.1);
        opacity: 1;
    }

    .step-item.active[b-ery9d8ze44] {
        background: rgba(255, 255, 255, 0.2);
        opacity: 1;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .step-item.completed[b-ery9d8ze44] {
        opacity: 1;
    }

.step-indicator[b-ery9d8ze44] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item.active .step-indicator[b-ery9d8ze44] {
    background: white;
    color: var(--blue);
}

.step-item.completed .step-indicator[b-ery9d8ze44] {
    background: var(--green);
    color: white;
}

.step-info[b-ery9d8ze44] {
    flex: 1;
    min-width: 0;
}

.step-title[b-ery9d8ze44] {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.step-subtitle[b-ery9d8ze44] {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.3;
}

.step-divider[b-ery9d8ze44] {
    width: 2px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    margin-left: 1.5rem;
}

.wizard-content-area[b-ery9d8ze44] {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.content-header[b-ery9d8ze44] {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

    .content-header h4[b-ery9d8ze44] {
        color: var(--text);
        font-weight: 600;
        margin: 0;
    }

    .content-header p[b-ery9d8ze44] {
        color: var(--gray);
        font-size: 0.9rem;
        margin: 0.25rem 0 0 0;
    }

.content-body[b-ery9d8ze44] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.wizard-footer[b-ery9d8ze44] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e9ecef;
}

.btn-next[b-ery9d8ze44], .btn-finish[b-ery9d8ze44] {
    transition: all 0.2s ease;
    min-width: 120px;
    position: relative;
}

    .btn-next:disabled[b-ery9d8ze44],
    .btn-finish:disabled[b-ery9d8ze44] {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn-next:hover:not(:disabled)[b-ery9d8ze44],
    .btn-finish:hover:not(:disabled)[b-ery9d8ze44] {
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }

.button-loading-state[b-ery9d8ze44] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button-ready-state[b-ery9d8ze44] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@@media (max-width: 768px) {
    .wizard-container[b-ery9d8ze44] {
        flex-direction: column;
    }

    .wizard-sidebar[b-ery9d8ze44] {
        width: 100%;
        padding: 1rem;
    }

    .wizard-steps-vertical[b-ery9d8ze44] {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
    }

    .step-item[b-ery9d8ze44] {
        min-width: 160px;
        flex-direction: column;
        text-align: center;
        padding: 0.5rem;
    }

    .step-info[b-ery9d8ze44] {
        display: none;
    }

    .step-divider[b-ery9d8ze44] {
        display: none;
    }

    .wizard-content-area[b-ery9d8ze44] {
        padding: 1.5rem;
    }

    .wizard-footer[b-ery9d8ze44] {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-left[b-ery9d8ze44], .footer-right[b-ery9d8ze44] {
        width: 100%;
        justify-content: space-between;
    }
}
/* /Pages/AdminTools/Devices.razor.rz.scp.css */
/* /Pages/AdminTools/View/ApkDistributionView.razor.rz.scp.css */
.apk-distribution-container[b-ynke1votbr] {
    position: relative;
    padding: 1.5rem;
}

.apk-window[b-ynke1votbr] {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #d4dbe6;
    border-radius: 1rem;
    padding: 1.5rem;
    display: grid;
    gap: 1.25rem;
    box-shadow: 0 16px 40px -32px rgba(15, 23, 42, 0.5);
}

.apk-header[b-ynke1votbr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.apk-title[b-ynke1votbr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.apk-header h3[b-ynke1votbr] {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #0f172a;
}

.apk-badge[b-ynke1votbr] {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: #e2e8f0;
    color: #1f2937;
}

.apk-badge.release[b-ynke1votbr] {
    background: #0f172a;
    color: #f8fafc;
}

.apk-badge.recent[b-ynke1votbr] {
    background: #dbeafe;
    color: #1e3a8a;
}

.apk-actions[b-ynke1votbr] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.apk-grid[b-ynke1votbr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.apk-card[b-ynke1votbr] {
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    padding: 1rem;
    background: #ffffff;
    display: grid;
    gap: 0.65rem;
    min-height: 100%;
}

.apk-card h4[b-ynke1votbr] {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #475569;
}

.apk-summary-card[b-ynke1votbr] {
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    padding: 0.9rem 1.1rem;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.apk-summary-card--release[b-ynke1votbr] {
    border-color: #017dc0;
    box-shadow: 0 0 0 2px rgba(1, 125, 192, 0.18);
}

.apk-summary-main[b-ynke1votbr] {
    display: grid;
    gap: 0.35rem;
}

.apk-summary-title[b-ynke1votbr] {
    font-weight: 700;
    color: #0f172a;
}

.apk-summary-meta[b-ynke1votbr] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.85rem;
}

.apk-summary-actions[b-ynke1votbr] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.apk-section[b-ynke1votbr] {
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    background: #ffffff;
}

.apk-card-header[b-ynke1votbr] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.apk-card-header h4[b-ynke1votbr] {
    margin: 0;
    color: #0f172a;
}

.apk-card-subtitle[b-ynke1votbr] {
    margin: 0.25rem 0 0 0;
    color: #64748b;
    font-size: 0.9rem;
}

.apk-card-count[b-ynke1votbr] {
    font-weight: 600;
    color: #475569;
}

.apk-loading[b-ynke1votbr] {
    display: flex;
    justify-content: center;
    padding: 0.75rem 0;
}

.apk-tag[b-ynke1votbr] {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.apk-tag--release[b-ynke1votbr] {
    background: #eef4ff;
    color: #1e3a8a;
    border: 1px solid #93c5fd;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12);
}

.apk-tag--beta[b-ynke1votbr] {
    background: #fef3c7;
    color: #92400e;
}

.apk-version[b-ynke1votbr] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: #0f172a;
}

.apk-version--release[b-ynke1votbr] {
    padding: 0.1rem 0.55rem;
    border-radius: 0.6rem;
    border: 1px solid #60a5fa;
    background: #eff6ff;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12);
}

.apk-distribution-container[b-ynke1votbr]  .k-button {
    background: #f8fafc;
    border: 1px solid #d5dde9;
    color: #1f2937;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.apk-distribution-container[b-ynke1votbr]  .k-button:hover,
.apk-distribution-container[b-ynke1votbr]  .k-button:focus {
    background: #f1f5f9;
    border-color: #c3cedc;
    color: #0f172a;
}

.apk-distribution-container[b-ynke1votbr]  .k-button.k-primary {
    background: #eef4ff;
    border-color: #93c5fd;
    color: #1e3a8a;
}

.apk-distribution-container[b-ynke1votbr]  .k-button.apk-release-btn {
    border-color: #017dc0;
    color: #017dc0;
    background: #f8fafc;
    margin : 5px;
}

.apk-distribution-container[b-ynke1votbr]  .k-button.apk-release-btn .k-icon {
    font-size: 0.45em;
}

.apk-distribution-container[b-ynke1votbr]  .k-button.apk-delete-btn {
    border-color: #e2e8f0;
    color: #64748b;
    background: #f8fafc;
}

.apk-distribution-container[b-ynke1votbr]  .k-button.apk-delete-btn:hover,
.apk-distribution-container[b-ynke1votbr]  .k-button.apk-delete-btn:focus {
    border-color: #cbd5f5;
    color: #334155;
    background: #f1f5f9;
}

.apk-distribution-container[b-ynke1votbr]  .k-button.apk-release-btn:hover,
.apk-distribution-container[b-ynke1votbr]  .k-button.apk-release-btn:focus {
    background: #eef6fb;
    border-color: #017dc0;
    color: #01679d;
}

.apk-distribution-container[b-ynke1votbr]  .k-button.k-success {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.upload-status-panel[b-ynke1votbr] {
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid transparent;
}

.upload-status-panel--info[b-ynke1votbr] {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.upload-status-panel--success[b-ynke1votbr] {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.upload-status-panel--warning[b-ynke1votbr] {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #92400e;
}

.upload-status-panel--error[b-ynke1votbr] {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #b91c1c;
}


.apk-grid[b-ynke1votbr] {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
}

.apk-kv[b-ynke1votbr] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.apk-kv span[b-ynke1votbr] {
    font-size: 0.78rem;
    color: #64748b;
}

.apk-kv strong[b-ynke1votbr] {
    font-weight: 600;
    color: #0f172a;
    word-break: break-word;
}

.apk-kv strong.mono[b-ynke1votbr] {
    font-family: "JetBrains Mono", "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
    font-size: 0.82rem;
}

.apk-notes[b-ynke1votbr] {
    display: grid;
    gap: 0.35rem;
}

.apk-notes span[b-ynke1votbr] {
    font-size: 0.78rem;
    color: #64748b;
}

.apk-notes p[b-ynke1votbr] {
    margin: 0;
    font-size: 0.9rem;
    color: #1e293b;
    line-height: 1.4;
    white-space: pre-wrap;
}

.share-box[b-ynke1votbr],
.upload-box[b-ynke1votbr] {
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    padding: 1rem;
    background: #ffffff;
    display: grid;
    gap: 0.75rem;
}

.legacy-box[b-ynke1votbr] {
    display: grid;
    gap: 1rem;
}

.legacy-controls[b-ynke1votbr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legacy-controls__left[b-ynke1votbr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.legacy-controls__right[b-ynke1votbr] {
    display: flex;
    gap: 0.5rem;
}

.legacy-hint[b-ynke1votbr] {
    color: #64748b;
    font-size: 0.85rem;
}

.legacy-loading[b-ynke1votbr] {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.legacy-table[b-ynke1votbr] {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
}

.legacy-table__header[b-ynke1votbr],
.legacy-table__row[b-ynke1votbr] {
    display: grid;
    grid-template-columns: 0.8fr 1.6fr 0.8fr 1fr 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 1rem;
}

.legacy-table__header[b-ynke1votbr] {
    background: #f1f5f9;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #475569;
}

.legacy-table__row[b-ynke1votbr] {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.legacy-table__share-row[b-ynke1votbr] {
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 0.6rem 1rem 0.85rem;
}

.legacy-version[b-ynke1votbr] {
    font-weight: 600;
    color: #0f172a;
}

.legacy-version--old[b-ynke1votbr] {
    color: #f59e0b;
}

.legacy-version--new[b-ynke1votbr] {
    color: #017dc0;
}

.legacy-file[b-ynke1votbr] {
    font-family: "JetBrains Mono", "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
    font-size: 0.82rem;
    color: #1e293b;
}

[b-ynke1votbr] .legacy-link-btn.legacy-link-btn--old {
    border-color: #f59e0b;
    color: #f59e0b;
}

[b-ynke1votbr] .legacy-link-btn.legacy-link-btn--new {
    border-color: #017dc0;
    color: #017dc0;
}

[b-ynke1votbr] .legacy-link-btn.legacy-link-btn--old:hover {
    background: rgba(245, 158, 11, 0.08);
}

[b-ynke1votbr] .legacy-link-btn.legacy-link-btn--new:hover {
    background: rgba(1, 125, 192, 0.08);
}

.legacy-share[b-ynke1votbr] {
    display: grid;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.85rem;
    background: #f8fafc;
}

.legacy-share--inline[b-ynke1votbr] {
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.legacy-share__label[b-ynke1votbr] {
    font-weight: 600;
    color: #0f172a;
}

.apk-details-modal[b-ynke1votbr] {
    max-height: 70vh;
    overflow: auto;
    padding-right: 0.25rem;
}

.legacy-box[b-ynke1votbr] {
    max-height: 70vh;
    overflow: auto;
    padding-right: 0.25rem;
}

@media (max-width: 900px) {
    .apk-summary-card[b-ynke1votbr] {
        align-items: flex-start;
    }

    .legacy-table__header[b-ynke1votbr],
    .legacy-table__row[b-ynke1votbr] {
        grid-template-columns: 1fr;
    }

    .legacy-table__header span[b-ynke1votbr] {
        display: none;
    }

    .legacy-table__row[b-ynke1votbr] {
        gap: 0.4rem;
        padding: 0.75rem;
    }
}

@media (max-width: 700px) {
    .apk-summary-card[b-ynke1votbr] {
        padding: 0.75rem;
    }

    .apk-summary-meta[b-ynke1votbr] {
        flex-direction: column;
        gap: 0.2rem;
    }
}

.share-box h4[b-ynke1votbr],
.upload-box h4[b-ynke1votbr] {
    margin: 0;
    color: #0f172a;
}

.share-hint[b-ynke1votbr] {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.share-controls[b-ynke1votbr] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.share-url-block[b-ynke1votbr] {
    margin-top: 0.25rem;
    display: grid;
    gap: 0.5rem;
}

.share-url[b-ynke1votbr] {
    padding: 0.6rem 0.75rem;
    border-radius: 0.6rem;
    border: 1px dashed #cbd5f5;
    background: #f8fafc;
    font-family: "JetBrains Mono", "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
    font-size: 0.82rem;
    color: #1e293b;
    word-break: break-word;
}

.share-url-actions[b-ynke1votbr] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.expires-at[b-ynke1votbr] {
    color: #64748b;
    font-size: 0.85rem;
}

.upload-form[b-ynke1votbr] {
    display: grid;
    gap: 0.75rem;
}

.field-row[b-ynke1votbr] {
    display: grid;
    gap: 0.35rem;
}

.field-row label[b-ynke1votbr] {
    font-weight: 600;
    color: #273142;
}

.checkbox-row label[b-ynke1votbr] {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-actions[b-ynke1votbr] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.upload-progress[b-ynke1votbr] {
    margin-top: 0.75rem;
    border: 1px solid #dfe5ee;
    border-radius: 0.5rem;
    padding: 0.75rem;
    background: #f8fafc;
}

.progress-header[b-ynke1votbr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #334155;
    font-weight: 600;
}

.upload-progress-value[b-ynke1votbr] {
    margin-bottom: 0.9rem;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: #017dc0;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.debug-error[b-ynke1votbr] {
    margin-top: 0.75rem;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    background: #fff5f5;
    padding: 0.75rem;
}

.debug-error-header[b-ynke1votbr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.debug-error pre[b-ynke1votbr] {
    margin: 0;
    max-height: 220px;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 0.8rem;
    color: #7f1d1d;
}

.empty-state[b-ynke1votbr] {
    border: 1px dashed #cbd5f5;
    border-radius: 0.75rem;
    padding: 1.25rem;
    color: #475569;
    text-align: center;
    background: #f8fafc;
}

.loading-overlay[b-ynke1votbr] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    z-index: 5;
}
/* /Pages/AdminTools/View/DeviceView.razor.rz.scp.css */
 
.form-section-compact[b-pi9hkz8kly] {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.section-title[b-pi9hkz8kly] {
    color: #0d6efd;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.25rem;
}

    .section-title i[b-pi9hkz8kly] {
        color: #0d6efd;
    }

.form-label-compact[b-pi9hkz8kly] {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #495057;
}

.info-note[b-pi9hkz8kly] {
    background: #e3f2fd;
    border-radius: 4px;
    padding: 0.5rem;
    border-left: 3px solid #2196f3;
    margin-top: 0.5rem;
}

.atom-registration-modal .k-window-content[b-pi9hkz8kly] {
    padding: 1rem;
    max-height: 50vh;
    overflow-y: auto;
}

.atom-result-modal .k-window-content[b-pi9hkz8kly] {
    padding: 1rem;
    max-height: 55vh;
    overflow-y: auto;
}

.device-info-compact .info-row[b-pi9hkz8kly] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f1f1f1;
}

    .device-info-compact .info-row:last-child[b-pi9hkz8kly] {
        border-bottom: none;
    }

@media (max-width: 768px) {
    .atom-registration-modal[b-pi9hkz8kly] {
        width: 95% !important;
        max-width: none !important;
    }

    .atom-result-modal[b-pi9hkz8kly] {
        width: 95% !important;
        max-width: none !important;
    }

    .form-section-compact[b-pi9hkz8kly] {
        padding: 0.75rem;
    }

    .section-title[b-pi9hkz8kly] {
        font-size: 0.85rem;
    }

    .device-info-compact .info-row[b-pi9hkz8kly] {
        flex-direction: column;
        align-items: flex-start;
    }

    .qr-image[b-pi9hkz8kly] {
        max-width: 150px !important;
    }
}

.atom-activation-result[b-pi9hkz8kly] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.device-info-card[b-pi9hkz8kly],
.qr-code-card[b-pi9hkz8kly] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
}

.atom-activation-result .table-sm[b-pi9hkz8kly] {
    margin-bottom: 0;
}

    .atom-activation-result .table-sm td[b-pi9hkz8kly] {
        padding: 0.5rem 0.5rem;
        border: none;
        vertical-align: middle;
    }

.activation-code-input[b-pi9hkz8kly] {
    font-family: 'Courier New', monospace !important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
    background-color: #e9ecef !important;
    font-size: 1.1rem !important;
    text-align: center !important;
}

.qr-container[b-pi9hkz8kly] {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.qr-image[b-pi9hkz8kly] {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.activation-code-section[b-pi9hkz8kly] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.spinner-border-sm[b-pi9hkz8kly] {
    width: 1rem;
    height: 1rem;
}

.modal__edit .k-window-content[b-pi9hkz8kly] {
    max-height: 40vh;
    overflow-y: auto;
}

.k-form-field-wrap[b-pi9hkz8kly] {
    margin-bottom: 0.5rem;
}

.text-primary[b-pi9hkz8kly] {
    color: #0d6efd !important;
}

.form-section .row[b-pi9hkz8kly] {
    margin-bottom: 1rem;
}

    .form-section .row:last-child[b-pi9hkz8kly] {
        margin-bottom: 0;
    }

.location-selector[b-pi9hkz8kly] {
    width: 100%;
}

.map-container[b-pi9hkz8kly] {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 0.5rem;
}

.map-controls[b-pi9hkz8kly] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.map-controls small[b-pi9hkz8kly] {
    flex: 1;
    min-width: 200px;
}

.map-controls .ms-1[b-pi9hkz8kly] {
    margin-left: 0.25rem !important;
}

@media (max-width: 768px) {
    .map-container[b-pi9hkz8kly] {
        padding: 0.25rem;
    }

    .map-controls[b-pi9hkz8kly] {
        flex-direction: column;
        align-items: stretch;
    }

    .map-controls small[b-pi9hkz8kly] {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

 
/* /Pages/AdminTools/View/LicensingView.razor.rz.scp.css */
 
.owner-details[b-zfu3sxp49h] {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    max-height: 400px;
    overflow-y: auto;
    font-size: medium;
}

.detail-item[b-zfu3sxp49h] {
    padding: 8px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: baseline;
}

    .detail-item:last-child[b-zfu3sxp49h] {
        border-bottom: none;
    }

    .detail-item strong[b-zfu3sxp49h] {
        min-width: 150px;
        color: #444;
        font-weight: 600;
    }

    .detail-item:nth-child(even)[b-zfu3sxp49h] {
        background-color: #f5f5f5;
    }

    .detail-item.highdart[b-zfu3sxp49h] {
        background-color: #017DC0;
        color: white;
    }

        .detail-item.highdart strong[b-zfu3sxp49h] {
            color: white;
        }
 
.desktop-view[b-zfu3sxp49h] {
    display: block;
}

.mobile-view[b-zfu3sxp49h] {
    display: none;
}

 
.mobile-cards[b-zfu3sxp49h] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    padding: 0 10px;
}

.owner-card[b-zfu3sxp49h] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 0 2px #017DC0, 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    border: 1px solid #017DC0;
}

.owner-card-header[b-zfu3sxp49h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #017DC0;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

    .owner-card-header h4[b-zfu3sxp49h] {
        margin: 0;
        font-size: 18px;
        color: #333;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-right: 10px;
    }

.owner-card-body[b-zfu3sxp49h] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-section[b-zfu3sxp49h] {
    padding: 10px;
    border-radius: 6px;
    background-color: #f8f9fa;
}

    .card-section.highlighted[b-zfu3sxp49h] {
        background-color: #e3f2fd;
        border: 1px solid #90caf9;
    }

.card-info-row[b-zfu3sxp49h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
}

    .card-info-row:last-child[b-zfu3sxp49h] {
        border-bottom: none;
    }

.info-label[b-zfu3sxp49h] {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    flex: 0 0 130px;
}

.info-value[b-zfu3sxp49h] {
    flex: 1;
    text-align: right;
    color: #333;
    font-size: 14px;
    word-break: break-word;
}

.email-value[b-zfu3sxp49h] {
    font-size: 13px;
    color: #1a73e8;
}

.duration-info[b-zfu3sxp49h] {
    margin-top: 10px;
    text-align: center;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.duration-label[b-zfu3sxp49h] {
    font-weight: 600;
    color: #555;
    margin-right: 10px;
}

.duration-info .duration-text[b-zfu3sxp49h] {
    font-size: 15px;
    font-weight: bold;
}
 
.duration-text[b-zfu3sxp49h] {
    font-weight: bold;
}

    .duration-text.green[b-zfu3sxp49h] {
        color: #28a745;
    }

    .duration-text.yellow[b-zfu3sxp49h] {
        color: #ffc107;
    }

    .duration-text.orange[b-zfu3sxp49h] {
        color: #fd7e14;
    }

    .duration-text.red[b-zfu3sxp49h] {
        color: #dc3545;
    }
 
.owner-details .duration-text.green[b-zfu3sxp49h] {
    color: #B8FFD3;
}

.owner-details .duration-text.yellow[b-zfu3sxp49h] {
    color: #FFE8A9;
}

.owner-details .duration-text.orange[b-zfu3sxp49h] {
    color: #FFCAA1;
}

.owner-details .duration-text.red[b-zfu3sxp49h] {
    color: #FFACAC;
}

.owner-details .detail-item.highdart .duration-text.green[b-zfu3sxp49h] {
    color: #B8FFD3;
}

.owner-details .detail-item.highdart .duration-text.yellow[b-zfu3sxp49h] {
    color: #FFE8A9;
}

.owner-details .detail-item.highdart .duration-text.orange[b-zfu3sxp49h] {
    color: #FFCAA1;
}

.owner-details .detail-item.highdart .duration-text.red[b-zfu3sxp49h] {
    color: #FFACAC;
}

.owner-status .badge[b-zfu3sxp49h] {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-success[b-zfu3sxp49h] {
    background-color: #28a745;
    color: white;
}

.badge-danger[b-zfu3sxp49h] {
    background-color: #dc3545;
    color: white;
}

.owner-card-actions[b-zfu3sxp49h] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.btn-icon[b-zfu3sxp49h] {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn-icon:hover[b-zfu3sxp49h] {
        background-color: #f8f9fa;
        border-color: #017DC0;
    }

    .btn-icon i[b-zfu3sxp49h] {
        font-size: 18px;
        color: #444;
    }

    .btn-icon:hover i[b-zfu3sxp49h] {
        color: #017DC0;
    }

 
@media (max-width: 850px) {
    .desktop-view[b-zfu3sxp49h] {
        display: none !important;
    }

    .mobile-view[b-zfu3sxp49h] {
        display: block !important;
    }

        .mobile-view .toolbar[b-zfu3sxp49h] {
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            border-bottom: 1px solid #eee;
        }

        .mobile-view .toolbar__title[b-zfu3sxp49h] {
            font-size: 18px;
            margin: 0;
        }

        .mobile-view .toolbar__buttons[b-zfu3sxp49h] {
            display: flex;
            gap: 8px;
        }

        .mobile-view .btn[b-zfu3sxp49h] {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-view .btn-primary[b-zfu3sxp49h] {
            background-color: #017DC0;
            color: white;
            border-color: #017DC0;
        }

        .mobile-view .btn-secondary[b-zfu3sxp49h] {
            background-color: #6c757d;
            color: white;
            border-color: #6c757d;
        }

        .mobile-view .btn i[b-zfu3sxp49h] {
            font-size: 16px;
        }
}

 
@media (max-width: 850px) {
 
    .sidebar[b-zfu3sxp49h],
    .nav-menu[b-zfu3sxp49h],
    .side-menu[b-zfu3sxp49h],
    .left-sidebar[b-zfu3sxp49h],
    .main-sidebar[b-zfu3sxp49h],
    .app-sidebar[b-zfu3sxp49h],
    .navigation-sidebar[b-zfu3sxp49h] {
        display: none !important;
    }

  
    .main-content[b-zfu3sxp49h],
    .content-wrapper[b-zfu3sxp49h],
    .page-content[b-zfu3sxp49h],
    .main-wrapper[b-zfu3sxp49h],
    .app-content[b-zfu3sxp49h] {
        margin-left: 0 !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

  
    .app-layout[b-zfu3sxp49h],
    .main-layout[b-zfu3sxp49h] {
        grid-template-columns: 1fr !important;
    }

   
    .app-container[b-zfu3sxp49h],
    .main-container[b-zfu3sxp49h] {
        flex-direction: column !important;
    }

 
    .sidebar-toggle[b-zfu3sxp49h],
    .menu-toggle[b-zfu3sxp49h] {
        display: none !important;
    }
}


.integrations-container[b-zfu3sxp49h] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.integration-badge[b-zfu3sxp49h] {
    display: inline-flex;
    align-items: center;
    background: #e3f2fd;
    color: #424242;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #bbdefb;
    white-space: nowrap;
}


.detail-item.integration-item[b-zfu3sxp49h] {
    flex-direction: column;
    align-items: flex-start;
}

    .detail-item.integration-item strong[b-zfu3sxp49h] {
        margin-bottom: 8px;
        min-width: auto;
    }

/* Responsive para móviles */
@media (max-width: 480px) {
    .integration-badge[b-zfu3sxp49h] {
        font-size: 0.8rem;
        padding: 4px 8px;
    }

    .integrations-container[b-zfu3sxp49h] {
        gap: 6px;
    }
}
 
@media (max-width: 850px) {
    .modal__detail[b-zfu3sxp49h] {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .form-licensing__form-item[b-zfu3sxp49h],
    .form-licensing__form-group[b-zfu3sxp49h] {
        margin-bottom: 15px;
    }
}


.loading-container[b-zfu3sxp49h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

    .loading-container p[b-zfu3sxp49h] {
        margin-top: 15px;
        font-size: 16px;
        color: #666;
        font-weight: 500;
    }


.spinner-border[b-zfu3sxp49h] {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-zfu3sxp49h 0.75s linear infinite;
    color: #017DC0;
}

@keyframes spinner-border-b-zfu3sxp49h {
    to {
        transform: rotate(360deg);
    }
}

.sr-only[b-zfu3sxp49h] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.toolbar__buttons .k-button.k-button-solid.k-button-solid-base[b-zfu3sxp49h] {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    margin-left: 10px;
    transition: all 0.3s ease;
}

    .toolbar__buttons .k-button.k-button-solid.k-button-solid-base:hover[b-zfu3sxp49h] {
        background-color: #5a6268;
        border-color: #545b62;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .toolbar__buttons .k-button.k-button-solid.k-button-solid-base:active[b-zfu3sxp49h] {
        transform: translateY(0);
        box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

.mobile-view .btn-secondary[b-zfu3sxp49h] {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
    transition: all 0.3s ease;
}

    .mobile-view .btn-secondary:hover[b-zfu3sxp49h] {
        background-color: #5a6268;
        border-color: #545b62;
        transform: scale(1.05);
    }

    .mobile-view .btn-secondary:active[b-zfu3sxp49h] {
        transform: scale(0.95);
    }


.fa-sync-alt[b-zfu3sxp49h] {
    transition: transform 0.3s ease;
}

.btn-secondary:hover .fa-sync-alt[b-zfu3sxp49h],
.k-button:hover .fa-sync-alt[b-zfu3sxp49h] {
    transform: rotate(180deg);
}


.grid-wrapper[b-zfu3sxp49h] {
    position: relative;
}

.grid-loading-overlay[b-zfu3sxp49h] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
 
/*.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #017DC0;
    margin-bottom: 10px;
}*/

.toolbar__title[b-zfu3sxp49h] {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #017DC0;
}

.toolbar__buttons[b-zfu3sxp49h] {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .toolbar[b-zfu3sxp49h] {
        padding: 10px 15px;
    }

    .toolbar__title[b-zfu3sxp49h] {
        font-size: 20px;
    }

    .loading-container[b-zfu3sxp49h] {
        padding: 20px;
    }

        .loading-container p[b-zfu3sxp49h] {
            font-size: 14px;
        }
}

/* Estados del botón refresh */
.refresh-button-loading[b-zfu3sxp49h] {
    pointer-events: none;
    opacity: 0.6;
}

    .refresh-button-loading .fa-sync-alt[b-zfu3sxp49h] {
        animation: spin-b-zfu3sxp49h 1s linear infinite;
    }

/* Estilos para columna de integraciones */
.integrations-column[b-zfu3sxp49h] {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.integrations-tooltip[b-zfu3sxp49h] {
    cursor: help;
}

@keyframes spin-b-zfu3sxp49h {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Feedback visual para operaciones exitosas */
.success-feedback[b-zfu3sxp49h] {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1001;
    animation: slideInRight-b-zfu3sxp49h 0.3s ease;
}

@keyframes slideInRight-b-zfu3sxp49h {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
@media (max-width: 480px) {
    .info-label[b-zfu3sxp49h] {
        flex: 0 0 100px;
        font-size: 13px;
    }

    .info-value[b-zfu3sxp49h] {
        font-size: 13px;
    }

    .owner-card-header h4[b-zfu3sxp49h] {
        font-size: 16px;
    }

    .owner-card[b-zfu3sxp49h] {
        padding: 12px;
    }

    .card-section[b-zfu3sxp49h] {
        padding: 8px;
    }
}
/* /Pages/AdminTools/View/ManualTransactionsView.razor.rz.scp.css */
.manual-transactions-wizard-container[b-emvheohcmw] {
    --manual-transactions-max-width: 1400px;
    --device-card-min-height: 9.5rem;
    flex: 1 1 auto;
    min-height: 0;
    width: min(100%, var(--manual-transactions-max-width));
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px;
    margin: 0 auto;
}

:deep(.manual-transactions-wizard)[b-emvheohcmw] {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

:deep(.manual-transactions-wizard .k-wizard-content)[b-emvheohcmw] {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

:deep(.manual-transactions-wizard .k-wizard-step-content)[b-emvheohcmw] {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Header con logout */
.wizard-header[b-emvheohcmw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.operator-info[b-emvheohcmw] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary, #555);
    font-weight: 500;
}

.operator-info :deep(svg)[b-emvheohcmw] {
    color: var(--primary-color, #1976d2);
}

.loading-overlay[b-emvheohcmw] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.step-content[b-emvheohcmw] {
    flex: 1 1 auto;
    min-height: 0;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
}

.step-content h3[b-emvheohcmw] {
    margin: 0 0 10px 0;
    color: var(--primary-color, #1976d2);
}

.step-description[b-emvheohcmw] {
    color: var(--text-secondary, #666);
    margin-bottom: 25px;
}

/* Access Step */
.access-granted[b-emvheohcmw] {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    margin-bottom: 25px;
}

.access-granted h4[b-emvheohcmw] {
    color: #2e7d32;
    margin: 15px 0 5px 0;
}

.access-granted :deep(svg)[b-emvheohcmw] {
    color: #4caf50;
}

.token-management-section[b-emvheohcmw],
.token-validation-section[b-emvheohcmw] {
    background: var(--surface-color, #f5f5f5);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.token-management-section h5[b-emvheohcmw],
.token-validation-section h4[b-emvheohcmw] {
    margin: 0 0 10px 0;
}

.token-input-group[b-emvheohcmw] {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 15px 0;
}

.token-valid[b-emvheohcmw] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #e8f5e9;
    border-radius: 6px;
    color: #2e7d32;
    margin-top: 15px;
}

.token-invalid[b-emvheohcmw] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #ffebee;
    border-radius: 6px;
    color: #c62828;
    margin-top: 15px;
}

/* Selection wrapper */
.selection-wrapper[b-emvheohcmw] {
    margin-bottom: 20px;
}

.selection-wrapper .form-label[b-emvheohcmw] {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.selection-info[b-emvheohcmw] {
    margin-top: 20px;
    padding: 15px;
    background: var(--surface-color, #f5f5f5);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color, #1976d2);
}

.selection-info h5[b-emvheohcmw] {
    margin: 0 0 10px 0;
}

.selection-info p[b-emvheohcmw] {
    margin: 5px 0;
}

/* Device Grid */
.device-grid[b-emvheohcmw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    align-content: start;
}

.device-step-content[b-emvheohcmw] {
    min-height: 0;
}

.device-grid-scroll[b-emvheohcmw] {
    flex: 1 1 auto;
    min-height: 0;
    padding-right: 6px;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.device-card[b-emvheohcmw] {
    min-height: var(--device-card-min-height);
    padding: 16px 14px;
    border: 2px solid var(--border-color, #e0e0e0);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.device-card:hover[b-emvheohcmw] {
    border-color: var(--primary-color, #1976d2);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.device-card.selected[b-emvheohcmw] {
    border-color: var(--primary-color, #1976d2);
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.device-card :deep(svg)[b-emvheohcmw] {
    color: var(--primary-color, #1976d2);
    margin-bottom: 10px;
}

.device-name[b-emvheohcmw] {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.device-serial[b-emvheohcmw] {
    color: var(--text-secondary, #666);
    font-size: 0.85rem;
    word-break: break-word;
}

.device-channels[b-emvheohcmw] {
    color: var(--text-secondary, #666);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Hose Grid */
.hose-grid[b-emvheohcmw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.hose-card[b-emvheohcmw] {
    padding: 20px;
    border: 2px solid var(--border-color, #e0e0e0);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.hose-card:hover[b-emvheohcmw] {
    border-color: var(--primary-color, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hose-card.selected[b-emvheohcmw] {
    border-color: var(--success-color, #388e3c);
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.hose-number[b-emvheohcmw] {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.product-name[b-emvheohcmw] {
    color: var(--text-secondary, #666);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price[b-emvheohcmw] {
    font-weight: bold;
    color: var(--success-color, #388e3c);
    font-size: 1rem;
}

/* Form Styles */
.form-group[b-emvheohcmw] {
    margin-bottom: 15px;
}

.form-label[b-emvheohcmw] {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary, #333);
}

.form-label.required[b-emvheohcmw]::after {
    content: " *";
    color: #c62828;
}

.form-row[b-emvheohcmw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row[b-emvheohcmw] {
        grid-template-columns: 1fr;
    }
}

.transaction-form[b-emvheohcmw] {
    background: var(--surface-color, #fafafa);
    padding: 20px;
    border-radius: 8px;
}

/* Confirmation Summary */
.confirmation-summary[b-emvheohcmw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .confirmation-summary[b-emvheohcmw] {
        grid-template-columns: 1fr;
    }
}

.summary-section[b-emvheohcmw] {
    background: var(--surface-color, #f5f5f5);
    padding: 15px 20px;
    border-radius: 8px;
}

.summary-section h5[b-emvheohcmw] {
    margin: 0 0 12px 0;
    color: var(--primary-color, #1976d2);
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    padding-bottom: 8px;
}

.summary-section p[b-emvheohcmw] {
    margin: 6px 0;
}

.summary-section .total[b-emvheohcmw] {
    font-size: 1.2rem;
    color: var(--primary-color, #1976d2);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid var(--primary-color, #1976d2);
}

.summary-section.audit[b-emvheohcmw] {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

/* Success Message */
.success-message[b-emvheohcmw] {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
}

.success-message :deep(svg)[b-emvheohcmw] {
    color: #4caf50;
}

.success-message h4[b-emvheohcmw] {
    color: #2e7d32;
    margin: 20px 0 15px 0;
}

.success-message p[b-emvheohcmw] {
    margin: 8px 0;
}

/* Warning Message */
.warning-message[b-emvheohcmw] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fff3e0;
    border-radius: 8px;
    margin-top: 20px;
    color: #e65100;
}

.warning-message :deep(svg)[b-emvheohcmw] {
    flex-shrink: 0;
}

/* No Data Message */
.no-data-message[b-emvheohcmw] {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary, #666);
}

/* Token Modal */
.token-modal-content[b-emvheohcmw] {
    padding: 10px;
}

.token-modal-content h5[b-emvheohcmw] {
    margin: 0 0 15px 0;
}

.token-form[b-emvheohcmw] {
    margin-top: 15px;
}

.generated-token[b-emvheohcmw] {
    margin-top: 15px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
}

.generated-token code[b-emvheohcmw] {
    display: block;
    font-size: 1.2rem;
    padding: 10px;
    background: white;
    border-radius: 4px;
    margin: 10px 0;
    word-break: break-all;
}

.generated-token .text-muted[b-emvheohcmw] {
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
}

/* Notification */
.notification-component[b-emvheohcmw] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.totalizer-input-red :deep(.k-input-inner)[b-emvheohcmw] {
    color: #c62828 !important;
    font-weight: bold;
}

.totalizer-input-red :deep(.k-input)[b-emvheohcmw] {
    border-color: #c62828 !important;
}

.field-info[b-emvheohcmw] {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}
.duration-row[b-emvheohcmw] {
    margin-top: 5px;
    margin-bottom: 15px;
}

.duration-display[b-emvheohcmw] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    color: #0d47a1;
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px solid #90caf9;
    max-width: fit-content;
}

.duration-display :deep(svg)[b-emvheohcmw] {
    color: #1976d2;
}

.format-preview-small[b-emvheohcmw] {
    font-size: 1rem;
    color: var(--text-secondary, #666);
    margin-top: 4px;
    font-style: italic;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

@media (min-width: 768px) {
    .device-grid-scroll[b-emvheohcmw] {
        max-height: calc((var(--device-card-min-height) * 2) + 15px + 0.75rem);
    }
}

@media (max-width: 767.98px) {
    .manual-transactions-wizard-container[b-emvheohcmw] {
        padding: 12px;
        overflow: visible;
    }

    .step-content[b-emvheohcmw] {
        padding: 16px 4px;
    }

    .token-input-group[b-emvheohcmw] {
        flex-direction: column;
        align-items: stretch;
    }

    .device-grid-scroll[b-emvheohcmw] {
        padding-right: 0;
        overflow: visible;
    }

    .device-grid[b-emvheohcmw] {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .device-card[b-emvheohcmw] {
        min-height: 8.75rem;
    }
}
/* /Pages/AdminTools/View/OwnerRestrictionsView.razor.rz.scp.css */
.restriction-view[b-uex1zeqllo] { padding: 20px; }
.header-actions[b-uex1zeqllo] { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.badge[b-uex1zeqllo] { padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: bold; }
.badge.blocked[b-uex1zeqllo] { background-color: #fce4e4; color: #cc0000; border: 1px solid #f8baba; }
.badge.allowed[b-uex1zeqllo] { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.badge.disabled[b-uex1zeqllo] { background-color: #eee; color: #888; }
.badge.active-now[b-uex1zeqllo] { background-color: #fff3e0; color: #ef6c00; border: 1px solid #ffe0b2; }
.badge.pending[b-uex1zeqllo] { background-color: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }
.badge.expired[b-uex1zeqllo] { background-color: #efebe9; color: #5d4037; border: 1px solid #d7ccc8; }
.badge.time-remaining[b-uex1zeqllo] { background-color: #ffebee; color: #c62828; border: 1px solid #ef9a9a; font-weight: bold; }
.badge.time-pending[b-uex1zeqllo] { background-color: #e8eaf6; color: #3949ab; border: 1px solid #9fa8da; }
.text-muted[b-uex1zeqllo] { color: #999; }

.form-grid[b-uex1zeqllo] { display: flex; flex-direction: column; gap: 15px; }
.field[b-uex1zeqllo] { display: flex; flex-direction: column; gap: 5px; }
.field-row[b-uex1zeqllo] { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; align-items: center; }
.footer[b-uex1zeqllo] { display: flex; justify-content: flex-end; gap: 10px; margin-top: 15px; border-top: 1px solid #ddd; padding-top: 15px; }
.loader-container[b-uex1zeqllo] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; z-index: 10; }

.endpoints-section[b-uex1zeqllo] {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #bbb;
}

.endpoints-grid[b-uex1zeqllo] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.endpoint-group[b-uex1zeqllo] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.endpoint-group:last-child[b-uex1zeqllo] {
    border-bottom: none;
    padding-bottom: 0;
}

.group-label[b-uex1zeqllo] {
    font-size: 0.8rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 4px;
    text-transform: uppercase;
}

/* Mejora de visibilidad para TelerikCheckBox */
[b-uex1zeqllo] .k-checkbox {
    border-color: #888 !important;
}

[b-uex1zeqllo] .k-checkbox:checked {
    border-color: var(--kendo-color-primary, #007bff) !important;
}

.endpoint-item[b-uex1zeqllo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding-left: 5px;
}

.endpoint-item label[b-uex1zeqllo] {
    margin: 0;
    cursor: pointer;
    color: #333;
}

.detail-container[b-uex1zeqllo] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

.detail-header[b-uex1zeqllo] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-box[b-uex1zeqllo] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.detail-section[b-uex1zeqllo] {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.detail-section label[b-uex1zeqllo] {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.detail-section ul[b-uex1zeqllo] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.endpoint-tags[b-uex1zeqllo] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.tag[b-uex1zeqllo] {
    background: #f1f3f5;
    color: #495057;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid #dee2e6;
}

.reason-text[b-uex1zeqllo] {
    background: #fff8f8;
    padding: 12px;
    border-left: 4px solid #cc0000;
    font-style: italic;
    color: #666;
    margin: 0;
}

.detail-footer-info[b-uex1zeqllo] {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
    margin-top: 10px;
}

.time-remaining-box[b-uex1zeqllo] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border: 1px solid #feb2b2;
    border-radius: 8px;
    color: #c53030;
    font-size: 1rem;
}
/* /Pages/AdminTools/View/ReplacementHistoryView.razor.rz.scp.css */
/* ── Botón de detalle en el grid ── */
.btn-detail[b-74qzdg7du3] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    transition: all 0.18s ease;
    border: none;
    cursor: pointer;
    color: black;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.35);
}

    .btn-detail:hover[b-74qzdg7du3] {
        background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
        color: #fff;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.45);
        transform: translateY(-1px);
    }

    .btn-detail:active[b-74qzdg7du3] {
        transform: translateY(0);
        box-shadow: 0 1px 4px rgba(13, 110, 253, 0.3);
    }

/* ── Ventana de detalle ── */
.replacement-detail-window[b-74qzdg7du3]  .k-window-titlebar {
    background: linear-gradient(135deg, #1a1f3a 0%, #243060 100%);
    color: #fff;
    border-bottom: none;
    padding: 0.6rem 1rem;
}

.replacement-detail-window[b-74qzdg7du3]  .k-window-title {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
}

.replacement-detail-window[b-74qzdg7du3]  .k-window-titlebar .k-button {
    color: rgba(255,255,255,0.7);
    border: none;
    background: transparent;
}

    .replacement-detail-window[b-74qzdg7du3]  .k-window-titlebar .k-button:hover {
        color: #fff;
        background: rgba(255,255,255,0.15);
    }

.replacement-detail-window[b-74qzdg7du3]  .k-window-content {
    padding: 0;
    background: #f4f6fb;
    overflow-y: auto;
    overflow-x: hidden;
}

/* ── Panel interno ── */
.detail-panel[b-74qzdg7du3] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-section[b-74qzdg7du3] {
    background: #fff;
    border-radius: 8px;
    margin: 0.6rem 0.8rem 0 0.8rem;
    box-shadow: 0 1px 6px rgba(30, 50, 100, 0.06);
    overflow: hidden;
}

    .detail-section:last-of-type[b-74qzdg7du3] {
        margin-bottom: 0.6rem;
    }

.detail-section-header[b-74qzdg7du3] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    background: linear-gradient(90deg, #eef1fb 0%, #f8f9fc 100%);
    border-bottom: 1px solid #e3e8f0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #3a4a8c;
}

    .detail-section-header svg[b-74qzdg7du3],
    .detail-section-header .k-svg-icon[b-74qzdg7du3] {
        color: #4c63d2;
        width: 14px;
        height: 14px;
    }

.detail-rows[b-74qzdg7du3] {
    padding: 0.2rem 0;
}

.detail-row[b-74qzdg7du3] {
    display: flex;
    align-items: baseline;
    padding: 0.35rem 0.8rem;
    border-bottom: 1px solid #f0f2f8;
    font-size: 0.8rem;
}

    .detail-row:last-child[b-74qzdg7du3] {
        border-bottom: none;
    }

.detail-label[b-74qzdg7du3] {
    flex: 0 0 38%;
    font-weight: 600;
    color: #5a6585;
    font-size: 0.75rem;
    padding-right: 0.4rem;
}

.detail-value[b-74qzdg7du3] {
    flex: 1;
    color: #1a2246;
    word-break: break-word;
    font-size: 0.8rem;
}

/* ── Badges de estado ── */
.badge[b-74qzdg7du3] {
    font-size: 0.68rem;
    padding: 0.2em 0.6em;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ── ID chip ── */
.id-chip[b-74qzdg7du3] {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #eef1fb, #dde3f5);
    color: #3a4a9c;
    border-radius: 5px;
    padding: 0.1rem 0.5rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ── Serial number mono ── */
.serial-mono[b-74qzdg7du3] {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    background: #f0f2f8;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    color: #2d3a6e;
    font-weight: 600;
}

/* ── Details textarea ── */
.detail-notes[b-74qzdg7du3] {
    font-size: 0.75rem;
    color: #4a5470;
    white-space: pre-wrap;
    background: #f8f9fd;
    border-radius: 5px;
    padding: 0.4rem 0.6rem;
    border: 1px solid #e3e8f0;
    line-height: 1.45;
    display: block;
}

/* ── Footer botones ── */
.detail-footer[b-74qzdg7du3] {
    display: flex;
    justify-content: flex-end;
    padding: 0.6rem 0.8rem;
    background: #fff;
    border-top: 1px solid #e3e8f0;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════
   ── Sección: Audit Trail (Blob Storage) ──
   ═══════════════════════════════════════════ */

.audit-section[b-74qzdg7du3] {
    border: 1px solid #e0e5f0;
}

.audit-header[b-74qzdg7du3] {
    background: linear-gradient(90deg, #e8edf8 0%, #f0f3fc 100%) !important;
    color: #2c3e7a !important;
}

.audit-content[b-74qzdg7du3] {
    padding: 0.5rem 0.7rem;
}

.audit-loading[b-74qzdg7du3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0.4rem;
    color: #6a7bb5;
    font-size: 0.78rem;
}

.audit-loading .spinner-border-sm[b-74qzdg7du3] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
    display: inline-block;
    vertical-align: text-bottom;
    border: 0.15em solid #6a7bb5;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-74qzdg7du3 0.75s linear infinite;
}

.audit-empty[b-74qzdg7du3] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 0.3rem;
    color: #8a95b5;
    font-size: 0.78rem;
    font-style: italic;
}

    .audit-empty .k-svg-icon[b-74qzdg7du3] {
        width: 14px;
        height: 14px;
        color: #a0aac5;
    }

.audit-count[b-74qzdg7du3] {
    font-size: 0.72rem;
    color: #6a7bb5;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.audit-count-badge[b-74qzdg7du3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4c63d2;
    color: #fff;
    border-radius: 10px;
    padding: 0.1rem 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 18px;
}

.audit-entry[b-74qzdg7du3] {
    background: #fafbfe;
    border: 1px solid #e8ecf4;
    border-radius: 6px;
    margin-bottom: 0.4rem;
    overflow: hidden;
    transition: box-shadow 0.15s ease;
}

    .audit-entry:last-child[b-74qzdg7du3] {
        margin-bottom: 0;
    }

    .audit-entry:hover[b-74qzdg7du3] {
        box-shadow: 0 2px 8px rgba(30, 50, 100, 0.08);
    }

.audit-entry-header[b-74qzdg7du3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0.6rem;
    background: #f3f5fb;
    border-bottom: 1px solid #eaecf4;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.audit-action-badge[b-74qzdg7du3] {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.audit-marked[b-74qzdg7du3] {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

.audit-cancelled[b-74qzdg7du3] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.audit-completed[b-74qzdg7du3] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.audit-default[b-74qzdg7du3] {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

.audit-query[b-74qzdg7du3] {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.audit-failed[b-74qzdg7du3] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    font-weight: 800;
}

.audit-timestamp[b-74qzdg7du3] {
    font-size: 0.65rem;
    color: #7a85a5;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
}

.audit-entry-body[b-74qzdg7du3] {
    padding: 0.3rem 0.6rem;
}

.audit-info-row[b-74qzdg7du3] {
    display: flex;
    align-items: baseline;
    padding: 0.2rem 0;
    font-size: 0.75rem;
    gap: 0.3rem;
}

.audit-info-label[b-74qzdg7du3] {
    flex: 0 0 55px;
    font-weight: 600;
    color: #5a6585;
    font-size: 0.7rem;
}

.audit-info-value[b-74qzdg7du3] {
    flex: 1;
    color: #2d3a6e;
    word-break: break-word;
}

.audit-details-text[b-74qzdg7du3] {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    background: #f0f2f8;
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
    display: inline-block;
}

/* ═══════════════════════════
   ── Loading Spinner ──
   ═══════════════════════════ */

.loading-container[b-74qzdg7du3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.spinner-border[b-74qzdg7du3] {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-74qzdg7du3 0.75s linear infinite;
    color: #017DC0;
}

@keyframes spinner-border-b-74qzdg7du3 {
    to {
        transform: rotate(360deg);
    }
}

.sr-only[b-74qzdg7du3] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════
   ── Responsive ──
   ═══════════════════════════ */

@media (max-width: 850px) {
    .replacement-detail-window.modal__detail[b-74qzdg7du3] {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .detail-label[b-74qzdg7du3] {
        flex: 0 0 35%;
        font-size: 0.72rem;
    }

    .detail-value[b-74qzdg7du3] {
        font-size: 0.75rem;
    }

    .detail-section[b-74qzdg7du3] {
        margin: 0.4rem 0.5rem 0 0.5rem;
        border-radius: 6px;
    }

    .detail-section-header[b-74qzdg7du3] {
        padding: 0.4rem 0.6rem;
        font-size: 0.68rem;
    }

    .detail-row[b-74qzdg7du3] {
        padding: 0.3rem 0.6rem;
    }

    .audit-entry-header[b-74qzdg7du3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .audit-info-row[b-74qzdg7du3] {
        flex-direction: column;
        gap: 0.1rem;
    }

    .audit-info-label[b-74qzdg7du3] {
        flex: none;
    }
}

@media (max-width: 480px) {
    .detail-label[b-74qzdg7du3] {
        flex: 0 0 40%;
        font-size: 0.7rem;
    }

    .detail-value[b-74qzdg7du3] {
        font-size: 0.72rem;
    }

    .detail-row[b-74qzdg7du3] {
        flex-direction: column;
        gap: 0.1rem;
        padding: 0.3rem 0.6rem;
    }

    .detail-label[b-74qzdg7du3] {
        flex: none;
    }

    .serial-mono[b-74qzdg7du3] {
        font-size: 0.72rem;
    }

    .detail-footer[b-74qzdg7du3] {
        padding: 0.5rem 0.6rem;
    }

    .audit-content[b-74qzdg7du3] {
        padding: 0.4rem 0.5rem;
    }

    .audit-details-text[b-74qzdg7du3] {
        font-size: 0.65rem;
    }
}
/* /Pages/AdminTools/View/ResilienceAdminView.razor.rz.scp.css */
.resilience-admin-container[b-nv4jfy04ez] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Loading Overlay */
.loading-overlay[b-nv4jfy04ez] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Stats Panel */
.stats-panel[b-nv4jfy04ez] {
    background: var(--bg-secondary, #f8f9fa);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stats-panel h3[b-nv4jfy04ez] {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary, #333);
    font-size: 0.95rem;
}

.stats-grid[b-nv4jfy04ez] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.stat-card[b-nv4jfy04ez] {
    background: white;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ccc;
}

.stat-card.pending[b-nv4jfy04ez] {
    border-left-color: #f59e0b;
}

.stat-card.retrying[b-nv4jfy04ez] {
    border-left-color: #3b82f6;
}

.stat-card.resolved[b-nv4jfy04ez] {
    border-left-color: #10b981;
}

.stat-card.failed[b-nv4jfy04ez] {
    border-left-color: #ef4444;
}

.stat-value[b-nv4jfy04ez] {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary, #333);
}

.stat-label[b-nv4jfy04ez] {
    display: block;
    font-size: 0.74rem;
    color: var(--text-secondary, #666);
    margin-top: 2px;
}

.pending-by-type[b-nv4jfy04ez] {
    margin-bottom: 8px;
}

.pending-by-type h4[b-nv4jfy04ez] {
    margin: 0 0 6px 0;
    font-size: 0.78rem;
    color: var(--text-secondary, #666);
}

.type-badges[b-nv4jfy04ez] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-badge[b-nv4jfy04ez] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #e5e7eb;
    color: #374151;
}

.type-badge.type-transaction[b-nv4jfy04ez] {
    background: #dbeafe;
    color: #1e40af;
}

.type-badge.type-refill[b-nv4jfy04ez] {
    background: #d1fae5;
    color: #047857;
}

.type-badge.type-event[b-nv4jfy04ez] {
    background: #fef3c7;
    color: #b45309;
}

.stats-actions[b-nv4jfy04ez] {
    display: flex;
    gap: 8px;
}

/* Records Panel */
.records-panel[b-nv4jfy04ez] {
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.records-panel h3[b-nv4jfy04ez] {
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary, #333);
    font-size: 0.95rem;
}

/* Status Badges */
.status-badge[b-nv4jfy04ez] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.status-pending[b-nv4jfy04ez] {
    background: #fef3c7;
    color: #b45309;
}

.status-badge.status-retrying[b-nv4jfy04ez] {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.status-resolved[b-nv4jfy04ez] {
    background: #d1fae5;
    color: #047857;
}

.status-badge.status-failed[b-nv4jfy04ez],
.status-badge.status-discarded[b-nv4jfy04ez] {
    background: #fee2e2;
    color: #b91c1c;
}

/* Action Buttons in Grid */
.action-buttons[b-nv4jfy04ez] {
    display: flex;
    gap: 4px;
}

.action-buttons button[b-nv4jfy04ez] {
    padding: 4px 8px;
    min-width: auto;
}

/* Record Details Dialog */
.record-details[b-nv4jfy04ez] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row[b-nv4jfy04ez] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.detail-row.full-width[b-nv4jfy04ez] {
    flex-direction: column;
}

.detail-row .label[b-nv4jfy04ez] {
    font-weight: 600;
    color: var(--text-secondary, #666);
    min-width: 120px;
}

.detail-row .value[b-nv4jfy04ez] {
    color: var(--text-primary, #333);
}

.error-text[b-nv4jfy04ez] {
    color: #b91c1c;
}

.payload-content[b-nv4jfy04ez] {
    background: #1e293b;
    color: #e2e8f0;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.8rem;
    overflow-x: auto;
    max-height: 300px;
    width: 100%;
}

.xml-content[b-nv4jfy04ez] {
    max-height: 450px;
    font-size: 0.85rem;
}

/* Forms */
.resolve-form[b-nv4jfy04ez],
.discard-form[b-nv4jfy04ez],
.cleanup-form[b-nv4jfy04ez] {
    padding: 8px 0;
}

.warning-text[b-nv4jfy04ez] {
    color: #b45309;
    font-weight: 500;
}

.cleanup-form[b-nv4jfy04ez] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cleanup-form p[b-nv4jfy04ez] {
    margin: 0;
}

/* Severity Badges */
.severity-badge[b-nv4jfy04ez] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.severity-badge.severity-information[b-nv4jfy04ez] {
    background: #dbeafe;
    color: #1e40af;
}

.severity-badge.severity-warning[b-nv4jfy04ez] {
    background: #fef3c7;
    color: #b45309;
}

.severity-badge.severity-error[b-nv4jfy04ez] {
    background: #fee2e2;
    color: #b91c1c;
}

.severity-badge.severity-critical[b-nv4jfy04ez] {
    background: #7f1d1d;
    color: #fecaca;
}

.section-tabs-shell[b-nv4jfy04ez] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px;
}

[b-nv4jfy04ez] .section-tabstrip .k-tabstrip-items-wrapper {
    border-bottom: 1px solid #cbd5e1;
}

[b-nv4jfy04ez] .section-tabstrip .k-tabstrip-items .k-item {
    border: 1px solid #cbd5e1;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #f1f5f9;
    margin-right: 6px;
}

[b-nv4jfy04ez] .section-tabstrip .k-tabstrip-items .k-item.k-active {
    background: #ffffff;
}

.window-stack[b-nv4jfy04ez] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 6px;
}

.window-panel[b-nv4jfy04ez] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.window-header[b-nv4jfy04ez] {
    padding: 8px 10px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.window-header h3[b-nv4jfy04ez] {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
    font-size: 0.92rem;
}

.window-body[b-nv4jfy04ez] {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.maintenance-metrics[b-nv4jfy04ez] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.mini-metric[b-nv4jfy04ez] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-label[b-nv4jfy04ez] {
    font-size: 0.68rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mini-value[b-nv4jfy04ez] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.window-actions[b-nv4jfy04ez] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.search-panel[b-nv4jfy04ez] {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #dbe4ef;
    padding: 8px;
}

.search-panel h3[b-nv4jfy04ez] {
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #334155;
    font-size: 0.84rem;
}

.filters-grid[b-nv4jfy04ez] {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 6px;
    align-items: start;
}

.filter-item[b-nv4jfy04ez] {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    column-gap: 6px;
    background: #ffffff;
    border: 1px solid #dbe4ef;
    border-radius: 6px;
    padding: 3px 6px;
}

.filter-item label[b-nv4jfy04ez] {
    font-size: 0.67rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.01em;
    line-height: 1.1;
    white-space: nowrap;
}

.search-actions[b-nv4jfy04ez] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
    justify-content: flex-end;
}

.stats-panel[b-nv4jfy04ez],
.records-panel[b-nv4jfy04ez],
.window-panel[b-nv4jfy04ez] {
    border: 1px solid #e2e8f0;
}

.records-panel[b-nv4jfy04ez] {
    padding: 10px;
}

.panel-inline-actions[b-nv4jfy04ez] {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 8px;
}

.logs-stats-panel[b-nv4jfy04ez] {
    padding: 10px;
    margin-bottom: 0;
}

.filter-modal-panel[b-nv4jfy04ez] {
    border: none;
    background: #f8fafc;
    padding: 2px;
}

.sql-assistant-layout[b-nv4jfy04ez] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 60vh;
    min-width: 0;
}

[b-nv4jfy04ez] .sql-assistant-window .k-window-content {
    padding: 8px;
    overflow: hidden;
}

[b-nv4jfy04ez] .sql-assistant-tabstrip {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
}

[b-nv4jfy04ez] .sql-assistant-tabstrip .k-tabstrip-items-wrapper {
    border-bottom: 1px solid #dbe4ef;
    margin-bottom: 4px;
}

[b-nv4jfy04ez] .sql-assistant-tabstrip .k-tabstrip-items .k-item {
    border: 1px solid #dbe4ef;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: #f8fafc;
    margin-right: 4px;
    padding: 0 4px;
}

[b-nv4jfy04ez] .sql-assistant-tabstrip .k-tabstrip-items .k-item.k-active {
    background: #ffffff;
}

[b-nv4jfy04ez] .sql-assistant-tabstrip .k-content {
    flex: 1 1 auto;
    min-height: 0;
    padding: 8px 2px 2px 2px;
    max-height: 62vh;
    overflow: auto;
}

.sql-tab-panel[b-nv4jfy04ez] {
    margin: 0;
    padding: 8px;
    min-width: 0;
}

.payload-fix-panel[b-nv4jfy04ez] {
    background: #f8fafc;
}

.payload-help-text[b-nv4jfy04ez] {
    margin: 0 0 8px 0;
    font-size: 0.75rem;
    color: #475569;
}

.payload-status-row[b-nv4jfy04ez] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.payload-options-grid[b-nv4jfy04ez] {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    margin-bottom: 6px;
}

.payload-token-item[b-nv4jfy04ez] {
    margin-bottom: 8px;
    grid-template-columns: 56px 1fr;
}

.sql-routing-grid[b-nv4jfy04ez] {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.sql-notes-item[b-nv4jfy04ez] {
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 6px;
    row-gap: 4px;
}

.sql-notes-item label[b-nv4jfy04ez] {
    margin-bottom: 4px;
}

.sql-grid-panels[b-nv4jfy04ez] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.sql-script-box[b-nv4jfy04ez] {
    width: 100%;
    min-height: 150px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #0f172a;
    color: #e2e8f0;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.78rem;
    line-height: 1.35;
    padding: 10px;
    resize: vertical;
    box-sizing: border-box;
}

.payload-editor-box[b-nv4jfy04ez] {
    min-height: 240px;
    max-height: 44vh;
}

[b-nv4jfy04ez] .sql-tab-panel .k-checkbox-wrap {
    justify-self: start;
}

[b-nv4jfy04ez] .sql-tab-panel .k-textarea,
[b-nv4jfy04ez] .sql-tab-panel .k-textarea .k-input-inner {
    width: 100%;
}

[b-nv4jfy04ez] .search-panel .k-input-inner {
    padding: 4px 6px;
    font-size: 0.8rem;
}

[b-nv4jfy04ez] .filter-item .k-picker,
[b-nv4jfy04ez] .filter-item .k-dropdownlist,
[b-nv4jfy04ez] .filter-item .k-numerictextbox,
[b-nv4jfy04ez] .filter-item .k-dateinput,
[b-nv4jfy04ez] .filter-item .k-textbox {
    width: 100%;
}

[b-nv4jfy04ez] .search-panel .k-input,
[b-nv4jfy04ez] .search-panel .k-picker,
[b-nv4jfy04ez] .search-panel .k-dropdownlist,
[b-nv4jfy04ez] .search-panel .k-numerictextbox,
[b-nv4jfy04ez] .search-panel .k-dateinput,
[b-nv4jfy04ez] .search-panel .k-textbox {
    min-height: 30px;
}

[b-nv4jfy04ez] .search-panel .k-button {
    min-height: 30px;
    padding: 4px 10px;
}

@media (max-width: 1280px) {
    .filters-grid[b-nv4jfy04ez] {
        grid-template-columns: repeat(2, minmax(230px, 1fr));
    }

    .sql-routing-grid[b-nv4jfy04ez],
    .payload-options-grid[b-nv4jfy04ez] {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .sql-grid-panels[b-nv4jfy04ez] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .resilience-admin-container[b-nv4jfy04ez] {
        padding: 12px;
        gap: 16px;
    }

    .window-body[b-nv4jfy04ez] {
        padding: 8px;
    }

    .maintenance-metrics[b-nv4jfy04ez] {
        grid-template-columns: 1fr;
    }

    .filters-grid[b-nv4jfy04ez] {
        grid-template-columns: 1fr;
    }

    .sql-routing-grid[b-nv4jfy04ez],
    .payload-options-grid[b-nv4jfy04ez] {
        grid-template-columns: 1fr;
    }

    .sql-grid-panels[b-nv4jfy04ez] {
        grid-template-columns: 1fr;
    }

    [b-nv4jfy04ez] .sql-assistant-tabstrip .k-content {
        max-height: 56vh;
    }
}

@media (max-width: 520px) {
    .filters-grid[b-nv4jfy04ez] {
        grid-template-columns: 1fr;
    }
}

/* CUSTOM SOFT/PASTEL BUTTON STYLES FOR RESILIENCE ADMIN */
/* Targeting outline buttons to make them softer/pastel */

/* Error Buttons (Soft Red/Rose) */
[b-nv4jfy04ez] .k-button-outline-error {
    border-color: #fca5a5; /* Red-300 */
    color: #be123c;        /* Rose-700 */
}
[b-nv4jfy04ez] .k-button-outline-error:hover,
[b-nv4jfy04ez] .k-button-outline-error:focus {
    background-color: #fff1f2; /* Rose-50 */
    border-color: #f43f5e;     /* Rose-500 */
    color: #be123c;
}

/* Success Buttons (Soft Emerald/Mint) */
[b-nv4jfy04ez] .k-button-outline-success {
    border-color: #6ee7b7; /* Emerald-300 */
    color: #059669;        /* Emerald-600 */
}
[b-nv4jfy04ez] .k-button-outline-success:hover,
[b-nv4jfy04ez] .k-button-outline-success:focus {
    background-color: #ecfdf5; /* Emerald-50 */
    border-color: #10b981;     /* Emerald-500 */
    color: #047857;
}

/* Warning Buttons (Soft Amber/Apricot) */
[b-nv4jfy04ez] .k-button-outline-warning {
    border-color: #fcd34d; /* Amber-300 */
    color: #b45309;        /* Amber-700 */
}
[b-nv4jfy04ez] .k-button-outline-warning:hover,
[b-nv4jfy04ez] .k-button-outline-warning:focus {
    background-color: #fffbeb; /* Amber-50 */
    border-color: #f59e0b;     /* Amber-500 */
    color: #b45309;
}

/* Info Buttons (Soft Sky Blue) */
[b-nv4jfy04ez] .k-button-outline-info {
    border-color: #7dd3fc; /* Sky-300 */
    color: #0284c7;        /* Sky-600 */
}
[b-nv4jfy04ez] .k-button-outline-info:hover,
[b-nv4jfy04ez] .k-button-outline-info:focus {
    background-color: #f0f9ff; /* Sky-50 */
    border-color: #0ea5e9;     /* Sky-500 */
    color: #0369a1;
}

/* Default/Base Outline Buttons (Soft Slate) */
[b-nv4jfy04ez] .k-button-outline-base,
[b-nv4jfy04ez] .k-button-outline-primary { /* Primary outline often used as default */
    border-color: #cbd5e1; /* Slate-300 */
    color: #475569;        /* Slate-600 */
}

[b-nv4jfy04ez] .k-button-outline-base:hover,
[b-nv4jfy04ez] .k-button-outline-base:focus,
[b-nv4jfy04ez] .k-button-outline-primary:hover,
[b-nv4jfy04ez] .k-button-outline-primary:focus {
    background-color: #f8fafc; /* Slate-50 */
    border-color: #94a3b8;     /* Slate-400 */
    color: #334155;
}

/* Preserve solid primary button (Actualizar) - ensuring it stays unaffected */
[b-nv4jfy04ez] .k-button-solid-primary {
    /* No changes needed, uses theme default */
}
/* /Pages/ATG/Levels.razor.rz.scp.css */
/* /Pages/ATG/Refills.razor.rz.scp.css */
/* /Pages/Groups/Components/ExcelImportDetails.razor.rz.scp.css */
/* Estilos para el componente ExcelImportDetails */
.import-details-container[b-5h5wv7qmui] {
    margin: 1rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
}

/* Advertencias de resumen */
.import-warnings[b-5h5wv7qmui] {
    padding: 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.warning-alert[b-5h5wv7qmui] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.warning-alert .alert-icon[b-5h5wv7qmui] {
    font-size: 1.2rem;
}

.duplicate-alert[b-5h5wv7qmui] {
    background-color: #fff8f8;
    border: 1px solid #ffcdd2;
    color: #d32f2f;
}

.duplicate-alert .alert-icon[b-5h5wv7qmui] {
    color: #d32f2f;
}

.inactive-alert[b-5h5wv7qmui] {
    background-color: #fff4e6;
    border: 1px solid #ffe0b2;
    color: #e65100;
}

.inactive-alert .alert-icon[b-5h5wv7qmui] {
    color: #ff9800;
}

/* Botón de toggle */
.import-details-container > button[b-5h5wv7qmui] {
    width: 100%;
    text-align: left;
    padding: 1rem;
    border: none;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

/* Contenido expandible */
.details-content[b-5h5wv7qmui] {
    padding: 1rem;
    background-color: #fafafa;
}

/* Sección de resumen */
.import-summary-section[b-5h5wv7qmui] {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.import-summary-section h4[b-5h5wv7qmui] {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.summary-grid[b-5h5wv7qmui] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.summary-item[b-5h5wv7qmui] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-label[b-5h5wv7qmui] {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value[b-5h5wv7qmui] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.duplicate-count[b-5h5wv7qmui] {
    color: #d63031;
}

.error-count[b-5h5wv7qmui] {
    color: #e65100;
}

.summary-value.new-count[b-5h5wv7qmui] {
    color: #27ae60;
}

.summary-value.update-count[b-5h5wv7qmui] {
    color: #1976d2;
}

/* Secciones de detalles */
.details-section[b-5h5wv7qmui] {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.details-section h4[b-5h5wv7qmui] {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}
/* /Pages/Groups/Components/ImportSection.razor.rz.scp.css */
.import-container[b-pkzpsmfav9] {
    position: relative;
    transition: opacity 0.3s ease;
}

.progress-container[b-pkzpsmfav9] {
    margin-top: 20px;
    border-radius: 4px;
}

.import-instructions[b-pkzpsmfav9] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.8rem;
}
/* /Pages/Groups/Components/NoteExportSection.razor.rz.scp.css */
.import-instructions-container[b-vt4g058zsg] {
    max-width: 800px;
    margin: 20px auto;
}

.import-instructions[b-vt4g058zsg] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px 25px 0px 25px;
}

.instruction-title[b-vt4g058zsg] {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 10px;
}

.instruction-subtitle[b-vt4g058zsg] {
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.instruction-text[b-vt4g058zsg] {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.instruction-list[b-vt4g058zsg] {
    padding-left: 20px;
}

    .instruction-list li[b-vt4g058zsg] {
        margin-bottom: 8px;
        line-height: 1.5;
    }

.instruction-section[b-vt4g058zsg] {
    margin-bottom: 20px;
}

strong[b-vt4g058zsg] {
    font-weight: 600;
}
/* /Pages/Groups/Components/ProgressMessages.razor.rz.scp.css */
.progress-messages-container[b-hmcav2cr2a] {
    max-height: 150px;
    overflow-y: auto;
    position: relative;
    margin-top: 10px;
}

.progress-messages-content[b-hmcav2cr2a] {
    padding: 5px;
}

.progress-message-item[b-hmcav2cr2a] {
    padding: 3px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

/* Efecto de desvanecimiento en los bordes */
.progress-messages-container[b-hmcav2cr2a]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.progress-messages-container[b-hmcav2cr2a]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.progress-percent[b-hmcav2cr2a] {
    color: #666;
    font-size: 0.8em;
    margin-left: 5px;
}
/* /Pages/Groups/Components/ShowDuplicates.razor.rz.scp.css */
/* Estilos para el componente de duplicados */
.duplicates-container[b-m9y9vpjenj] {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #fff8f8;
    border-radius: 4px;
    border-left: 3px solid #ff6b6b;
}

    .duplicates-container h5[b-m9y9vpjenj] {
        margin: 0 0 0.5rem 0;
        color: #d63031;
        font-size: 0.9rem;
    }

.duplicates-list[b-m9y9vpjenj] {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

    .duplicates-list li[b-m9y9vpjenj] {
        margin-bottom: 0.5rem;
        padding: 0.3rem;
        background-color: #fff;
        border-radius: 3px;
        font-size: 0.85rem;
    }

.duplicate-value[b-m9y9vpjenj] {
    font-weight: bold;
    color: #d63031;
}

.duplicate-rows[b-m9y9vpjenj] {
    color: #666;
    margin-left: 0.5rem;
}

.no-duplicates[b-m9y9vpjenj] {
    color: #27ae60;
    font-size: 0.85rem;
    margin: 0.5rem 0;
    font-style: italic;
}

/* Mantener los estilos anteriores del contenedor principal */
.import-details-container[b-m9y9vpjenj] {
    margin: 1rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
/* /Pages/Groups/Components/ShowRecordsWarning.razor.rz.scp.css */
/* Estilos para el componente de advertencias de registros */

/* Contenedor general */
.duplicates-analysis[b-6pzfdw5cg6] {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

/* Sección de duplicados en archivo */
.file-duplicates-section[b-6pzfdw5cg6] {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #fff8f8;
    border-radius: 4px;
    border-left: 3px solid #ff6b6b;
}

.duplicate-title[b-6pzfdw5cg6] {
    margin: 0 0 0.5rem 0;
    color: #d63031;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-icon[b-6pzfdw5cg6] {
    color: #ff6b6b;
}

.duplicate-warning[b-6pzfdw5cg6] {
    margin: 0 0 0.75rem 0;
    color: #666;
    font-size: 0.8rem;
    font-style: italic;
}

.duplicates-list[b-6pzfdw5cg6] {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.duplicate-item[b-6pzfdw5cg6] {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ffe0e0;
}

.duplicate-header[b-6pzfdw5cg6] {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
}

.duplicate-value[b-6pzfdw5cg6] {
    font-weight: bold;
    color: #d63031;
    font-size: 0.85rem;
}

.duplicate-details[b-6pzfdw5cg6] {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
}

.duplicate-rows[b-6pzfdw5cg6] {
    color: #666;
}

.last-row-info[b-6pzfdw5cg6] {
    color: #27ae60;
    font-weight: 500;
}

/* Sección de padres inactivos */
.inactive-parents-section[b-6pzfdw5cg6] {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #fff4e6;
    border-radius: 4px;
    border-left: 3px solid #ff9800;
}

.inactive-parent-title[b-6pzfdw5cg6] {
    margin: 0 0 0.5rem 0;
    color: #e65100;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-icon[b-6pzfdw5cg6] {
    color: #ff9800;
}

.inactive-parent-warning[b-6pzfdw5cg6] {
    margin: 0 0 0.75rem 0;
    color: #666;
    font-size: 0.8rem;
    font-style: italic;
}

.inactive-parents-list[b-6pzfdw5cg6] {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.inactive-parent-item[b-6pzfdw5cg6] {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ffe0b2;
}

.inactive-parent-header[b-6pzfdw5cg6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.inactive-parent-value[b-6pzfdw5cg6] {
    font-weight: 600;
    color: #e65100;
    font-size: 0.85rem;
}

.record-key[b-6pzfdw5cg6] {
    color: #666;
    font-size: 0.85rem;
}

.inactive-parent-details[b-6pzfdw5cg6] {
    font-size: 0.8rem;
}

.parent-info[b-6pzfdw5cg6] {
    color: #d84315;
    font-weight: 500;
}

/* Sección de registros eliminados */
.deleted-records-section[b-6pzfdw5cg6] {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #fbe9e7;
    border-radius: 4px;
    border-left: 3px solid #d84315;
}

.deleted-records-title[b-6pzfdw5cg6] {
    margin: 0 0 0.5rem 0;
    color: #d84315;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deleted-icon[b-6pzfdw5cg6] {
    color: #d84315;
}

.deleted-records-list[b-6pzfdw5cg6] {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.deleted-record-item[b-6pzfdw5cg6] {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ffccbc;
}

.deleted-record-value[b-6pzfdw5cg6] {
    font-weight: 600;
    color: #e65100;
    font-size: 0.85rem;
}

.deleted-key[b-6pzfdw5cg6] {
    color: #666;
    font-size: 0.85rem;
}

/* Sección de registros existentes en BD */
.existing-db-section[b-6pzfdw5cg6] {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #e3f2fd;
    border-radius: 4px;
    border-left: 3px solid #2196f3;
}

.existing-title[b-6pzfdw5cg6] {
    margin: 0 0 0.5rem 0;
    color: #1976d2;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.database-icon[b-6pzfdw5cg6], .info-icon[b-6pzfdw5cg6] {
    color: #2196f3;
}

.existing-warning[b-6pzfdw5cg6], .existing-info[b-6pzfdw5cg6] {
    margin: 0 0 0.75rem 0;
    color: #666;
    font-size: 0.8rem;
    font-style: italic;
}

.existing-list[b-6pzfdw5cg6] {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.existing-item[b-6pzfdw5cg6] {
    margin-bottom: 0.3rem;
    padding: 0.4rem;
    background-color: #fff;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.existing-value[b-6pzfdw5cg6] {
    color: #1976d2;
    font-weight: 500;
}

.existing-row[b-6pzfdw5cg6] {
    color: #666;
    font-size: 0.8rem;
}

/* Sin duplicados */
.no-duplicates[b-6pzfdw5cg6] {
    color: #27ae60;
    font-size: 0.85rem;
    margin: 0.5rem 0;
    font-style: italic;
    text-align: center;
}

/* Resumen de sección */
.section-summary[b-6pzfdw5cg6] {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.summary-item[b-6pzfdw5cg6] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.summary-label[b-6pzfdw5cg6] {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value[b-6pzfdw5cg6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.duplicate-count[b-6pzfdw5cg6] {
    color: #d63031;
}

.error-count[b-6pzfdw5cg6] {
    color: #e65100;
}

.update-count[b-6pzfdw5cg6] {
    color: #1976d2;
}

.new-count[b-6pzfdw5cg6] {
    color: #27ae60;
}

.ignored-count[b-6pzfdw5cg6] {
    color: #757575;
}
/* /Pages/Groups/Customers.razor.rz.scp.css */
/* /Pages/Groups/Groups.razor.rz.scp.css */
/* /Pages/Groups/Identifiers.razor.rz.scp.css */
/* /Pages/Groups/SyncMonitor.razor.rz.scp.css */
.sync-monitor-page[b-ifmnts29qf] {
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
}

.sync-monitor-page[b-ifmnts29qf]  .analytics-container {
    min-height: 100%;
}

.sync-monitor-page[b-ifmnts29qf]  .content-wrapper {
    overflow: visible;
}

@media (max-width: 767.98px) {
    .sync-monitor-page[b-ifmnts29qf] {
        height: auto;
        min-height: auto;
        overflow-y: visible;
        padding-bottom: 5rem;
    }
}
/* /Pages/Groups/Views/RulesView.razor.rz.scp.css */
 
.key-details-modal .k-window-content[b-eo6fm33j2o] {
    padding: 0;
}

.key-details-content[b-eo6fm33j2o] {
    padding: 1rem;  
    padding-bottom: 0;
}

.key-details-table[b-eo6fm33j2o] {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dee2e6;
}

    .key-details-table td[b-eo6fm33j2o] {
        padding: 0.25rem 0.6rem; 
        vertical-align: middle;
        border-bottom: 1px solid #e9ecef;
    }

    .key-details-table tr:last-child td[b-eo6fm33j2o] {
        border-bottom: none;
    }

.key-label[b-eo6fm33j2o] {
    background-color: #0d6efd;
    color: white;
    font-weight: 600;
    width: 66.66%;  
}

.key-value[b-eo6fm33j2o] {
    color: #495057;
    font-family: monospace;
    font-size: 0.9rem; 
    white-space: nowrap; 
}

.status-active[b-eo6fm33j2o] {
    color: #198754;
    font-weight: bold;
    font-family: sans-serif;
}

.status-inactive[b-eo6fm33j2o] {
    color: #dc3545;
    font-weight: bold;
    font-family: sans-serif;
}

.key-details-footer[b-eo6fm33j2o] {
    padding: 0.75rem 1rem;  
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    margin-top: 1rem;  
}

 
.schedule-view-btn.k-button[b-eo6fm33j2o] {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    padding: 0.2rem 0.6rem;  
    font-size: 0.8rem;
}

    .schedule-view-btn.k-button:hover[b-eo6fm33j2o] {
        background-color: #5c636a;
        border-color: #5c636a;
    }

 
.schedule-details-modal .k-window-content[b-eo6fm33j2o] {
    padding: 0;
}

.schedule-details-content[b-eo6fm33j2o] {
    padding: 1rem;
}
/* /Pages/Groups/Views/SyncMonitorView.razor.rz.scp.css */
.analytics-container[b-ng5fkocnak] {
    padding: 2.5rem 2.5rem 4rem 2.5rem;
    background-color: #f8f9fa;
    min-height: calc(100vh - 60px);
    overflow: visible;
}

.content-wrapper[b-ng5fkocnak] {
    min-width: 0;
    overflow: visible;
}

@keyframes fadeInUp-b-ng5fkocnak {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-ng5fkocnak {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.stats-card[b-ng5fkocnak] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
    animation: fadeInUp-b-ng5fkocnak 0.6s ease-out;
}

    .stats-card:hover[b-ng5fkocnak] {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .stats-card[b-ng5fkocnak]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #3498db, #cce5ff, #3498db, #004566);
    }

.stats-card-header[b-ng5fkocnak] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.stats-card-title[b-ng5fkocnak] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.stats-card-value[b-ng5fkocnak] {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1rem 0;
    line-height: 1.2;
}

.stats-card-icon[b-ng5fkocnak] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

    .stats-card-icon.icon-success[b-ng5fkocnak] {
        background: linear-gradient(135deg, #2ecc71, #27ae60);
    }

    .stats-card-icon.icon-info[b-ng5fkocnak] {
        background: linear-gradient(135deg, #3498db, #2980b9);
    }

    .stats-card-icon.icon-warning[b-ng5fkocnak] {
        background: linear-gradient(135deg, #f39c12, #e67e22);
    }

    .stats-card-icon.icon-danger[b-ng5fkocnak] {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
    }

.progress-bar-container[b-ng5fkocnak] {
    position: relative;
    width: 100%;
    height: 24px;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar-fill[b-ng5fkocnak] {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 12px;
    transition: width 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.status-badge[b-ng5fkocnak] {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
}

    .status-badge.status-inprogress[b-ng5fkocnak],
    .status-inprogress[b-ng5fkocnak] {
        background-color: #cce5ff;
        color: #004085;
    }

    .status-badge.status-completed[b-ng5fkocnak],
    .status-completed[b-ng5fkocnak] {
        background-color: #d4edda;
        color: #155724;
    }

    .status-badge.status-failed[b-ng5fkocnak],
    .status-failed[b-ng5fkocnak] {
        background-color: #f8d7da;
        color: #721c24;
    }

.device-status-badge[b-ng5fkocnak] {
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .device-status-badge.active[b-ng5fkocnak] {
        background: linear-gradient(135deg, #2ecc71, #27ae60);
        color: white;
    }

    .device-status-badge.inactive[b-ng5fkocnak] {
        background: linear-gradient(135deg, #95a5a6, #7f8c8d);
        color: white;
    }

.performance-grid[b-ng5fkocnak] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    animation: fadeInUp-b-ng5fkocnak 0.6s ease-out;
}

.grid-header[b-ng5fkocnak] {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #004566 !important;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #dee2e6;
}

    .grid-header *[b-ng5fkocnak] {
        color: #004566 !important;
    }

.grid-title[b-ng5fkocnak] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

    .grid-title[b-ng5fkocnak]::before {
        margin-right: 0.5rem;
        color: aliceblue;
        font-size: 1.2rem;
    }

.status-summary[b-ng5fkocnak] {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

    .status-summary span[b-ng5fkocnak] {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

.alerts-grid .k-grid-content td[b-ng5fkocnak] {
    vertical-align: top;
}

.alert-severity-badge[b-ng5fkocnak] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

    .alert-severity-badge.severity-critical[b-ng5fkocnak] {
        background: #fdeaea;
        color: #b42318;
    }

    .alert-severity-badge.severity-warning[b-ng5fkocnak] {
        background: #fff4db;
        color: #b54708;
    }

    .alert-severity-badge.severity-info[b-ng5fkocnak] {
        background: #e8f2fb;
        color: #017dc0;
    }

.alert-message-cell[b-ng5fkocnak] {
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    color: #2d3748;
    font-weight: 500;
}

.real-time-indicator[b-ng5fkocnak] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #28a745;
}

.pulse-dot[b-ng5fkocnak] {
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    animation: pulse-b-ng5fkocnak 2s infinite;
}

.group-indicator[b-ng5fkocnak] {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-left: 0.5rem;
}

.group-metrics-section[b-ng5fkocnak] {
    border-left: 4px solid #8e44ad;
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(142, 68, 173, 0.05), transparent);
}

.customer-metrics-section[b-ng5fkocnak] {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.05), transparent);
}

.loading-overlay[b-ng5fkocnak] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.modal-header-custom[b-ng5fkocnak] {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #017dc0, #42a6e2);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.modal-title[b-ng5fkocnak] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.close-btn-custom[b-ng5fkocnak] {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-btn-custom:hover[b-ng5fkocnak] {
        opacity: 1;
    }

.modal-content-wrapper[b-ng5fkocnak] {
    padding: 1.5rem;
    background: #f8f9fa;
    min-height: 100%;
    overflow-y: auto;
}

.modal-actions[b-ng5fkocnak] {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.info-card[b-ng5fkocnak] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1rem;
}

.info-card-header[b-ng5fkocnak] {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.info-card-title[b-ng5fkocnak] {
    font-size: 1rem;
    font-weight: 600;
    color: #343a40;
    margin: 0;
}

.info-card-body[b-ng5fkocnak] {
    padding: 1rem;
}

.info-section[b-ng5fkocnak] {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-section-single[b-ng5fkocnak] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

    .info-section-single .info-block[b-ng5fkocnak] {
        display: flex;
        align-items: baseline;
        margin-bottom: 1rem;
        min-height: 1.5rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

        .info-section-single .info-block:last-child[b-ng5fkocnak] {
            border-bottom: none;
            margin-bottom: 0;
        }

.info-block[b-ng5fkocnak] {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.75rem;
    min-height: 1.5rem;
}

.info-label[b-ng5fkocnak] {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
    flex-shrink: 0;
}

.info-value[b-ng5fkocnak] {
    color: #212529;
    flex: 1;
    word-break: break-word;
}

    .info-value.success-rate[b-ng5fkocnak] {
        font-weight: 600;
        color: #28a745;
    }

.error-section[b-ng5fkocnak] {
    margin-top: 1rem;
}

.error-message[b-ng5fkocnak] {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.recent-activity-section[b-ng5fkocnak] {
    margin-top: 1.5rem;
}

.k-grid-footer[b-ng5fkocnak] {
    background-color: #f8f9fa;
    font-weight: 500;
    border-top: 2px solid #dee2e6;
}

    .k-grid-footer .k-grid-footer-wrap table tbody tr td[b-ng5fkocnak] {
        padding: 8px 12px;
        background-color: #f8f9fa;
    }

.k-badge.k-badge-warning[b-ng5fkocnak] {
    color: #212529 !important;
    background-color: #ffc107 !important;
}

    .k-badge.k-badge-warning.k-badge-solid[b-ng5fkocnak] {
        border: 1px solid #ffca2f !important;
    }

.btn[b-ng5fkocnak] {
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-secondary[b-ng5fkocnak] {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

    .btn-secondary:hover[b-ng5fkocnak] {
        background-color: #5a6268;
        border-color: #545b62;
        transform: translateY(-1px);
    }

.device-card[b-ng5fkocnak] {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

    .device-card:hover[b-ng5fkocnak] {
        background-color: #f8f9fa;
        border-color: #007bff;
    }

.chart-container[b-ng5fkocnak] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
    height: 400px;
}

.recent-activity-section .k-grid[b-ng5fkocnak] {
    overflow-x: auto;
}

.detail-modal:not(.k-window-visible)[b-ng5fkocnak],
.device-modal:not(.k-window-visible)[b-ng5fkocnak] {
    display: none !important;
}

.k-window[b-ng5fkocnak] {
    position: fixed !important;
}

.k-overlay[b-ng5fkocnak] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* LAYOUT VERTICAL OBLIGATORIO EN TODOS LOS MODALES - SIN IMPORTAR TAMAÑO DE PANTALLA */
.k-window .row[b-ng5fkocnak],
.k-window .row > div[b-ng5fkocnak],
.k-window .row > div[class*="col-"][b-ng5fkocnak] {
    flex-direction: column !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 1rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remover márgenes laterales de filas en modales */
.k-window .row[b-ng5fkocnak] {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Información del dispositivo - layout vertical SIEMPRE */
.k-window .info-block[b-ng5fkocnak] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.25rem !important;
    margin-bottom: 1rem !important;
    padding: 0.75rem !important;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    width: 100% !important;
    box-sizing: border-box !important;
}

.k-window .info-label[b-ng5fkocnak] {
    min-width: auto !important;
    width: 100% !important;
    font-size: 0.85rem !important;
    color: #6c757d !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 700 !important;
    margin-bottom: 0.25rem !important;
}

.k-window .info-value[b-ng5fkocnak] {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #212529 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    line-height: 1.4 !important;
}

/* Todas las secciones de info en una columna SIEMPRE */
.k-window .info-section[b-ng5fkocnak],
.k-window .info-section-single[b-ng5fkocnak],
.k-window .info-card[b-ng5fkocnak] {
    width: 100% !important;
    margin-bottom: 1rem !important;
    padding: 1rem !important;
}

/* Títulos de secciones */
.k-window .info-card-title[b-ng5fkocnak] {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
}

 
.k-window .container-fluid .row[b-ng5fkocnak],
.k-window .container .row[b-ng5fkocnak],
.k-window .row[b-ng5fkocnak] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

 
.k-window [class*="col-"][b-ng5fkocnak] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

 
.k-window .info-block[b-ng5fkocnak],
.k-window .info-section .info-block[b-ng5fkocnak],
.k-window .info-section-single .info-block[b-ng5fkocnak] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

 
.modal-sync-detail .k-window[b-ng5fkocnak],
.modal-device-detail .k-window[b-ng5fkocnak] {
    width: 98vw !important;
    height: 98vh !important;
    left: 1vw !important;
    top: 1vh !important;
    margin: 0 !important;
    position: fixed !important;
    border-radius: 6px;
}

.modal-sync-detail .modal-content-wrapper[b-ng5fkocnak],
.modal-device-detail .modal-content-wrapper[b-ng5fkocnak] {
    padding: 0.75rem !important;
    overflow-y: visible !important;
    max-height: none !important;
    height: auto !important;
}

.modal-sync-detail .k-window-content[b-ng5fkocnak],
.modal-device-detail .k-window-content[b-ng5fkocnak] {
    overflow-y: auto !important;
    max-height: calc(98vh - 120px) !important;
}

.k-grid[b-ng5fkocnak] {
    font-size: 0.9rem;
}

.modal-header-custom .modal-title[b-ng5fkocnak] {
    flex: 1 !important;
}

@media (max-width: 767.98px) {
    .analytics-container[b-ng5fkocnak] {
        padding: 1rem 0.5rem;
        margin-top: 3rem;
        min-height: auto;
    }

    .stats-card-header[b-ng5fkocnak] {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stats-card-value[b-ng5fkocnak] {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }

    .stats-card[b-ng5fkocnak] {
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .stats-card-icon[b-ng5fkocnak] {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .grid-header[b-ng5fkocnak] {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .grid-title[b-ng5fkocnak] {
        font-size: 0.95rem;
    }

    .performance-grid[b-ng5fkocnak] {
        margin-bottom: 1.5rem;
    }

    .k-grid[b-ng5fkocnak] {
        font-size: 0.8rem;
    }

        .k-grid .k-grid-header .k-header[b-ng5fkocnak] {
            padding: 0.5rem 0.25rem;
            font-size: 0.75rem;
        }

        .k-grid td[b-ng5fkocnak] {
            padding: 0.5rem 0.25rem;
        }

    .status-badge[b-ng5fkocnak] {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .device-status-badge[b-ng5fkocnak] {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .alert-severity-badge[b-ng5fkocnak] {
        min-width: 82px;
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .analytics-container[b-ng5fkocnak] {
        padding: 1.5rem 1rem;
    }

    .stats-card-value[b-ng5fkocnak] {
        font-size: 1.75rem;
    }

    .col-md-3[b-ng5fkocnak],
    .col-md-6[b-ng5fkocnak] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-4[b-ng5fkocnak] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .k-grid[b-ng5fkocnak] {
        font-size: 0.8rem;
    }

        .k-grid .k-grid-header .k-header[b-ng5fkocnak] {
            padding: 0.45rem 0.3rem;
            font-size: 0.75rem;
        }

        .k-grid td[b-ng5fkocnak] {
            padding: 0.45rem 0.3rem;
            font-size: 0.8rem;
        }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .analytics-container[b-ng5fkocnak] {
        padding: 2rem 1.5rem;
    }

    .stats-card-value[b-ng5fkocnak] {
        font-size: 1.8rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .analytics-container[b-ng5fkocnak] {
        padding: 2.5rem 2rem;
    }

    .stats-card-value[b-ng5fkocnak] {
        font-size: 1.9rem;
    }
}

@media (min-width: 1200px) {
    .analytics-container[b-ng5fkocnak] {
        padding: 2.5rem 2.5rem 4rem 2.5rem;
    }

    .stats-card-value[b-ng5fkocnak] {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .performance-grid .k-grid-content[b-ng5fkocnak] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .performance-grid .k-grid table[b-ng5fkocnak] {
        min-width: 100%;
    }
}
/* /Pages/Home/Administrator.razor.rz.scp.css */
/* /Pages/Home/Components/ChannelActionPopover.razor.rz.scp.css */
.chpop[b-0zzha7stwm] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* ── Trigger button ── */
.chpop__trigger[b-0zzha7stwm] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: #08324d;
    padding: 0.22rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    min-width: 4.5rem;
    justify-content: center;
    white-space: nowrap;
}

.chpop__trigger:hover:not(:disabled)[b-0zzha7stwm] {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.chpop__trigger--active[b-0zzha7stwm] {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.chpop__trigger:disabled[b-0zzha7stwm] {
    opacity: 0.55;
    cursor: not-allowed;
}

.chpop__badge[b-0zzha7stwm] {
    font-weight: 700;
}

.chpop__arrow[b-0zzha7stwm] {
    font-size: 0.65rem;
}

/* ── Panel ── */
.chpop__panel[b-0zzha7stwm] {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    right: -0.5rem;
    z-index: 1200;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    border: 1.5px solid #549fdd;
    box-shadow: 0 8px 28px rgba(84, 159, 221, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: scale(0.85);
    transform-origin: bottom right;
}

/* ── Header ── */
.chpop__header[b-0zzha7stwm] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem;
    background: #fff;
    color: #549fdd;
    border-bottom: 1px solid #e0e8f0;
}

.chpop__title[b-0zzha7stwm] {
    flex: 1;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #549fdd;
}

.chpop__close[b-0zzha7stwm],
.chpop__back[b-0zzha7stwm] {
    flex-shrink: 0;
    border: none;
    background: #e8f4fd;
    color: #549fdd;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background 0.15s;
}

.chpop__close:hover[b-0zzha7stwm],
.chpop__back:hover[b-0zzha7stwm] {
    background: #549fdd;
    color: #fff;
}

/* ── Rows ── */
.chpop__row[b-0zzha7stwm] {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    min-height: 2.8rem;
    border-bottom: 1px solid #e0e8f0;
    transition: background 0.12s;
    overflow: hidden;
    cursor: pointer;
}

.chpop__row:last-child[b-0zzha7stwm] {
    border-bottom: none;
}

.chpop__row:hover[b-0zzha7stwm] {
    background: #f0f7ff;
}

.chpop__row--selected:hover[b-0zzha7stwm] {
    background: #4a8fcf;
}

.chpop__row--selected[b-0zzha7stwm] {
    background: #549fdd;
}

.chpop__row--selected .chpop__channel-label[b-0zzha7stwm] {
    color: #fff;
    background: #4a8fcf;
    border-left-color: rgba(255,255,255,0.3);
}

.chpop__row--selected .chpop__action--key[b-0zzha7stwm] {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-right-color: rgba(255,255,255,0.3);
}

.chpop__row--selected .chpop__action--key:hover:not(:disabled)[b-0zzha7stwm] {
    background: rgba(255, 255, 255, 0.35);
}

.chpop__row--selected .chpop__hose-btn[b-0zzha7stwm] {
    border-right-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.chpop__row--selected .chpop__hose-label[b-0zzha7stwm] {
    color: #fff;
}

.chpop__row--selected .chpop__hose-icon[b-0zzha7stwm] {
    color: #fff;
}

.chpop__row--selected .chpop__hose-btn--stop[b-0zzha7stwm] {
    background: rgba(255, 193, 7, 0.25);
}

.chpop__row--selected .chpop__hose-btn--stop .chpop__hose-icon[b-0zzha7stwm] {
    color: #ffc107;
}

/* ── Channel label ── */
.chpop__channel-label[b-0zzha7stwm] {
    flex-shrink: 0;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #549fdd;
    background: #f0f7ff;
    border-left: 1px solid #e0e8f0;
    transition: color 0.2s, background 0.12s, transform 0.12s;
    margin-left: 0;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.chpop__row:hover .chpop__channel-label[b-0zzha7stwm] {
    background: #d6ebff;
    color: #017DC0;
}

.chpop__row--selected:hover .chpop__channel-label[b-0zzha7stwm] {
    background: #3f7eb8;
}

.chpop__channel-label--dispensing[b-0zzha7stwm] {
    color: #28a745;
}

.chpop__row--selected .chpop__channel-label--dispensing[b-0zzha7stwm] {
    color: #28a745;
}

/* ── Inline hose buttons ── */
.chpop__hoses[b-0zzha7stwm] {
    display: flex;
    flex: 1;
    gap: 0;
    align-self: stretch;
}

.chpop__hose-btn[b-0zzha7stwm] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0 0.4rem;
    border-radius: 0;
    border: none;
    border-right: 1px solid #e0e8f0;
    background: #f8fbff;
    cursor: pointer;
    font-size: 0.78rem;
    transition: background 0.15s;
    white-space: nowrap;
    min-width: 0;
}

.chpop__hose-btn:last-child[b-0zzha7stwm] {
    border-right: none;
}

.chpop__hose-btn:hover[b-0zzha7stwm] {
    background: #0550A0;
}

.chpop__hose-btn--stop[b-0zzha7stwm] {
    background: #8F4E42;
    color:aliceblue;
}

.chpop__hose-btn--stop:hover[b-0zzha7stwm] {
    background: #ffecb3;
}

.chpop__hose-label[b-0zzha7stwm] {
    font-weight: 700;
    color: #08324d;
}

.chpop__hose-icon[b-0zzha7stwm] {
    font-size: 0.95rem;
    color: #549fdd;
}

.chpop__hose-btn--stop .chpop__hose-icon[b-0zzha7stwm] {
    color: #dc3545;
}

/* ── Offline submenu ── */
.chpop__offline-any-label[b-0zzha7stwm] {
    flex: 1;
    font-size: 0.82rem;
    color: #549fdd;
    font-weight: 600;
    font-style: italic;
}

.chpop__offline-hose-label[b-0zzha7stwm] {
    flex: 1;
    font-size: 0.82rem;
    color: #08324d;
    font-weight: 500;
}

.chpop__action--inline[b-0zzha7stwm] {
    width: auto;
    height: auto;
    background: transparent;
    font-size: 0.7rem;
    color: #549fdd;
    pointer-events: none;
    border-radius: 0;
}

.chpop__row:active[b-0zzha7stwm] {
    background: #549fdd;
}

.chpop__row:active .chpop__offline-any-label[b-0zzha7stwm],
.chpop__row:active .chpop__offline-hose-label[b-0zzha7stwm] {
    color: #fff;
}

.chpop__row:active .chpop__action--inline[b-0zzha7stwm] {
    color: #fff;
}

/* ── Action buttons ── */
.chpop__action[b-0zzha7stwm] {
    flex-shrink: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: background 0.15s;
}

.chpop__action:disabled[b-0zzha7stwm] {
    opacity: 0.38;
    cursor: not-allowed;
}

.chpop__action--key[b-0zzha7stwm] {
    width: 2.5rem;
    align-self: stretch;
    border-radius: 2px;
    border-right: 1px solid #e0e8f0;
    background: #e8f4fd;
    color: #549fdd;
}

.chpop__action--key:hover:not(:disabled)[b-0zzha7stwm] {
    background: #549fdd;
    color: #fff;
}

/* ── Empty state ── */
.chpop__empty[b-0zzha7stwm] {
    padding: 0.7rem;
    text-align: center;
    color: #888;
    font-size: 0.8rem;
}

/* ── Identifier icons ── */
.chpop__ident-icon[b-0zzha7stwm] {
    width: 1.1rem;
    text-align: center;
    font-size: 0.78rem;
    color: #08324d;
    flex-shrink: 0;
}

.chpop__ident-icon--stack[b-0zzha7stwm] {
    display: inline-flex;
    gap: 0.1rem;
    align-items: center;
    width: 1.1rem;
    justify-content: center;
}

.chpop__ident-icon--stack i[b-0zzha7stwm] {
    font-size: 0.68rem;
    color: #08324d;
}

.chpop__offline-any-label[b-0zzha7stwm],
.chpop__offline-hose-label[b-0zzha7stwm] {
    flex: 1;
    text-align: center;
    font-size: 0.82rem;
    color: #08324d;
    font-weight: 500;
}
/* /Pages/Home/Components/DeviceCard.razor.rz.scp.css */
.pref-hidden[b-p0x01683xs] {
    color: transparent !important;
    position: relative;
    user-select: none;
    pointer-events: none;
    min-width: 3rem;
    min-height: 0.85rem;
}

    .pref-hidden[b-p0x01683xs]::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 0.55rem;
        background: #e9ecef;
        border-radius: 999px;
    }

.card[b-p0x01683xs] {
    display: flex;
    flex-direction: column;
    width: 20rem;
    max-width: 20rem;
    min-width: 20rem;
    border: 1px solid #d9e2ec;
    margin: 1rem 1.25rem 0 1.25rem;
    border-radius: 1rem;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.2s ease;
    overflow: visible;
    height: auto;
    align-self: flex-start;
}

.card__content[b-p0x01683xs] {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.5rem;
    height: auto;
}

.card.device-card--collapsed[b-p0x01683xs],
.card.device-card--expanded[b-p0x01683xs] {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.05);
    min-height: 18.75rem;
}

    .card.device-card--collapsed .card__content[b-p0x01683xs],
    .card.device-card--expanded .card__content[b-p0x01683xs] {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

.content__header[b-p0x01683xs] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0.6rem;
}

.title__device[b-p0x01683xs] {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    align-items: flex-start;
    width: 100%;
    max-width: calc(100% - 32px);
    min-height: 2.8rem;
}

.title__device--with-connectivity-note[b-p0x01683xs] {
    padding-right: 8.5rem;
}

.device__serial[b-p0x01683xs] {
    font-size: 1.2rem;
    color: #017DC0;
    align-content: center;
}

.device__name[b-p0x01683xs] {
    font-size: 1.3rem;
    color: #017DC0;
    margin-left: 5px;
    margin-top: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.shift-row[b-p0x01683xs] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 5px;
    line-height: 1;
}

.shift-section[b-p0x01683xs] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.shift-section--hidden[b-p0x01683xs] {
    visibility: hidden;
}

.shift-label[b-p0x01683xs] {
    font-size: 0.73rem;
    color: #6c757d;
    font-weight: 400;
}

.shift-icon[b-p0x01683xs] {
    font-size: 0.68rem;
    flex-shrink: 0;
    position: relative;
    top: -1.5px;
}

    .shift-icon.shift-open[b-p0x01683xs] {
        color: #017DC0;
    }

    .shift-icon.shift-closed[b-p0x01683xs] {
        color: #9ca3af;
    }

    .shift-icon.shift-unknown[b-p0x01683xs] {
        color: #9ca3af;
    }

.shift-row--clickable[b-p0x01683xs] {
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.15s;
}

    .shift-row--clickable:hover[b-p0x01683xs] {
        background: rgba(1, 125, 192, 0.08);
    }

.header__content[b-p0x01683xs] {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0.5rem;
}

.content__hose[b-p0x01683xs] {
    overflow: hidden;
    padding-left: 0.35rem;
    flex: 1 1 42%;
}

.hose[b-p0x01683xs] {
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
}

img.hose__img[b-p0x01683xs] {
    width: 3.5rem;
    height: 2.6rem;
    transform: rotate(20deg);
    margin-top: -2px;
    margin-left: -5px;
}

.hose__drop[b-p0x01683xs] {
    font-size: 0.9rem;
    color: #017DC0;
    margin-top: 2px;
    align-self: center;
    margin-left: -2.4rem;
}

.hose__drop--dispensing[b-p0x01683xs] {
    animation: dropPulse-b-p0x01683xs 1s ease-in-out infinite;
}

@keyframes dropPulse-b-p0x01683xs {
    0%       { transform: scale(1.1); opacity: 1; }
    50%      { transform: scale(0.6); opacity: 0.4; }
    100%     { transform: scale(1.1); opacity: 1; }
}

.hose__total[b-p0x01683xs] {
    padding: 0.25rem 0.25rem 0.15rem;
    min-height: 5.9rem;
}

/* Oculta visualmente el elemento sin eliminar su espacio en el layout */
.hose-row--hidden[b-p0x01683xs] {
    visibility: hidden;
}

.total__title[b-p0x01683xs] {
    text-align: left;
}

.total__volume-row[b-p0x01683xs] {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    min-height: 1.6rem;
}

.total__volume[b-p0x01683xs] {
    font-size: 1.2rem;
    font-weight: 800;
}

.total__unit[b-p0x01683xs] {
    font-size: 0.85rem;
}

.total__money[b-p0x01683xs] {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #6c757d;
    line-height: 1.2;
}

.total__money--na[b-p0x01683xs] {
    font-weight: 400;
    color: #adb5bd;
}

.content__device[b-p0x01683xs] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    flex: 1 1 58%;
    height: 10.5rem;
    min-height: 10.5rem;
    text-align: right;
    overflow: visible;
}

.device__image-frame[b-p0x01683xs] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 7.9rem;
}

.device__img[b-p0x01683xs] {
    width: 9.75rem !important;
    max-height: 10rem;
    height: auto;
    margin-right: 0.15rem;
    transform: translateY(-10%);
    object-fit: contain;
    transition: all 0.3s ease;
}

.device__preset-slot[b-p0x01683xs] {
    width: 100%;
    min-height: 2.4rem;
    margin-top: 0.1rem;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.device__preset-slot--empty[b-p0x01683xs] {
    visibility: hidden;
}

.preset-status-badge--device[b-p0x01683xs] {
    margin-left: 0;
    min-width: 6rem;
    justify-content: center;
    transform: translateY(50%) translateX(-24%);
}


.content__footer[b-p0x01683xs] {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.2s ease, visibility 0s linear 0.35s;
}

    .content__footer.show[b-p0x01683xs] {
        max-height: 30rem;
        opacity: 1;
        visibility: visible;
        padding-bottom: 0.35rem;
        overflow: visible;
        transition: max-height 0.35s ease, opacity 0.2s ease 0.15s, visibility 0s linear 0s;
    }

.footer__info[b-p0x01683xs] {
    display: flex;
    flex-direction: column;
    margin-top: 0.65rem;
}

.info__item[b-p0x01683xs] {
    display: flex;
    flex-direction: row;
    min-height: 2.4rem;
    margin-left: 1rem;
    align-items: center;
}

.info__title[b-p0x01683xs] {
    font-size: 0.92rem;
    color: #6c757d;
    margin-left: 0.9rem;
    line-height: 1.1;
}


.dispensing-status[b-p0x01683xs] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.15rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-text[b-p0x01683xs] {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 500;
}

.pulse-animation[b-p0x01683xs] {
    color: #28a745;
    animation: pulse-b-p0x01683xs 1.5s infinite;
}

@keyframes pulse-b-p0x01683xs {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.info__value[b-p0x01683xs] {
    font-size: 0.92rem;
    font-weight: 600;
    margin-left: 0.9rem;
    margin-bottom: 0;
    line-height: 1.15;
}

.info__icon[b-p0x01683xs] {
    align-content: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    min-width: 1.85rem;
    height: 1.85rem;
    background: #EEEDF0;
    border-radius: 8px;
    padding: 0;
    font-size: 0.9rem;
}

.info__separator[b-p0x01683xs] {
    align-self: center;
    border-bottom: solid 1px;
    border-color: #D0D0D0;
    width: calc(100% - 2rem);
    margin-bottom: 0.35rem;
}

.footer__buttons[b-p0x01683xs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.3rem;
    background-color: #549fdd;
    margin: 1rem;
    margin-bottom: 0.25rem;
    border-radius: 10rem;
    overflow: visible;
    padding: 0.15rem 0.35rem;
}

.footer__actions[b-p0x01683xs] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer__icon-btn[b-p0x01683xs] {
    border: none;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #08324d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

    .footer__icon-btn:hover:not(:disabled)[b-p0x01683xs] {
        background: rgba(255, 255, 255, 0.22);
        color: #ffffff;
        transform: translateY(-1px);
    }

    .footer__icon-btn:disabled[b-p0x01683xs] {
        opacity: 0.55;
        cursor: not-allowed;
    }

    .footer__icon-btn--stop[b-p0x01683xs] {
        background: rgba(220, 53, 69, 0.2);
        color: #dc3545;
    }

    .footer__icon-btn--stop:hover:not(:disabled)[b-p0x01683xs] {
        background: rgba(220, 53, 69, 0.35);
        color: #ffffff;
    }

    .footer__icon-btn i[b-p0x01683xs] {
        font-size: 1rem;
    }

.footer__btn[b-p0x01683xs] {
    border: none;
    background-color: transparent;
    color: #000000;
    padding: 0.24rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;
}

    .footer__btn:hover:not(:disabled)[b-p0x01683xs] {
        background-color: #aed6f7;
    }

    .footer__btn:disabled[b-p0x01683xs] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.footer__btn-left[b-p0x01683xs] {
    border-top-left-radius: 10rem;
    border-bottom-left-radius: 10rem;
}

.footer__btn-right[b-p0x01683xs] {
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
    margin-left: auto;
    min-width: 5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.channel-dropdown-icon[b-p0x01683xs] {
    font-size: 0.85rem;
    color: #08324d;
    pointer-events: none;
    align-self: center;
}

.channel-dropdown[b-p0x01683xs],
.hose-dropdown[b-p0x01683xs] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    color: #000000;
    padding: 0.22rem 2rem 0.22rem 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    text-align-last: center;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1.2rem;
}

    .channel-dropdown:disabled[b-p0x01683xs],
    .hose-dropdown:disabled[b-p0x01683xs] {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .channel-dropdown:focus[b-p0x01683xs],
    .hose-dropdown:focus[b-p0x01683xs] {
        outline: none;
        background-color: rgba(255, 255, 255, 0.1);
    }

.hose-dropdown[b-p0x01683xs] {
    margin-left: 1rem;
    background-color: rgba(255, 192, 0, 0.18);
    border-radius: 5px;
}

.footer__icon-btn--status-active[b-p0x01683xs] {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 18px rgba(1, 125, 192, 0.38);
}

    .footer__icon-btn--status-active:hover:not(:disabled)[b-p0x01683xs] {
        background: rgba(255, 255, 255, 0.28);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), 0 0 22px rgba(1, 125, 192, 0.42);
    }

.header__nav-control[b-p0x01683xs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 1.9rem;
    height: 1.9rem;
    margin: 0.1rem 0 0 0.75rem;
    color: #017DC0;
    text-decoration: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

    .header__nav-control i[b-p0x01683xs] {
        font-size: 1.15rem;
        font-weight: 900;
    }

    .header__nav-control:hover[b-p0x01683xs] {
        transform: translateY(1px);
    }

@keyframes slide-down-b-p0x01683xs {
    from {
        max-height: 0;
        opacity: 0;
    }

    to {
        max-height: 30rem;
        opacity: 1;
    }
}

@keyframes slide-up-b-p0x01683xs {
    from {
        max-height: 30rem;
        opacity: 1;
    }

    to {
        max-height: 0;
        opacity: 0;
    }
}

.connectivity-indicator-shell[b-p0x01683xs] {
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.connectivity-indicator-note[b-p0x01683xs] {
    max-width: 8.5rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #017DC0;
    border: 1px solid rgba(1, 125, 192, 0.14);
    box-shadow: 0 6px 14px rgba(1, 125, 192, 0.12);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
    white-space: nowrap;
}

.connectivity-indicator[b-p0x01683xs] {
    border: none;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.015);
    font-size: 10px;
}

    .connectivity-indicator:hover[b-p0x01683xs] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.12);
    }

    .connectivity-indicator:active[b-p0x01683xs] {
        transform: translateY(0);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    }

    .connectivity-indicator i[b-p0x01683xs] {
        transition: transform 0.6s ease;
        transform-origin: center center;
        display: block;
        line-height: 1;
    }

    .connectivity-indicator:hover i[b-p0x01683xs] {
        transform: rotate(180deg);
    }

.connectivity-online[b-p0x01683xs] {
    color: #4D944D;
    border: 1px solid #a0c8a0;
}

    .connectivity-online:hover[b-p0x01683xs] {
        background: #e8f5e8;
    }

.connectivity-warning[b-p0x01683xs] {
    color: #c4a882;
    border: 1px solid #e0d2b8;
}

    .connectivity-warning:hover[b-p0x01683xs] {
        background: #faf9f6;
    }

.connectivity-offline[b-p0x01683xs] {
    color: #c8a8a8;
    border: 1px solid #e4d4d4;
}

    .connectivity-offline:hover[b-p0x01683xs] {
        background: #faf8f8;
    }

.connectivity-active[b-p0x01683xs] {
    color: #17a2b8;
    border: 2px solid #17a2b8;
    animation: pulse-glow-b-p0x01683xs 2s infinite;
}

    .connectivity-active:hover[b-p0x01683xs] {
        background: #f0fdff;
    }

.connectivity-unknown[b-p0x01683xs] {
    color: #c5cbd3;
    border: 1px solid #f1f3f4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

    .connectivity-unknown:hover[b-p0x01683xs] {
        background: #fafafa;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    }

@keyframes pulse-glow-b-p0x01683xs {
    0% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(23, 162, 184, 0.4);
    }

    50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(23, 162, 184, 0.1);
    }

    100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(23, 162, 184, 0);
    }
}

@media (max-width: 805px) {
    .card[b-p0x01683xs] {
        margin: 0.65rem auto;
        width: min(18.25rem, calc(100vw - 3.2rem));
        min-width: min(18.25rem, calc(100vw - 3.2rem));
        max-width: min(18.25rem, calc(100vw - 3.2rem));
    }
}

.signalr-status-note[b-p0x01683xs] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 0 32px 0 4px;
    font-size: 0.75rem;
    color: #b35b00;
    line-height: 1.2;
}

    .signalr-status-note i[b-p0x01683xs] {
        color: #b35b00;
        font-size: 0.75rem;
    }

.dispensing-timestamp[b-p0x01683xs] {
    display: inline;
    font-size: inherit;
    color: inherit;
    margin-left: 0.35rem;
    opacity: 0.7;
}

/* Shift command modal */
.shift-modal-overlay[b-p0x01683xs] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shift-modal[b-p0x01683xs] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    min-width: 320px;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
}

.shift-modal__header[b-p0x01683xs] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #017DC0;
    color: #fff;
    cursor: grab;
    user-select: none;
}

.shift-modal__title[b-p0x01683xs] {
    font-size: 0.95rem;
    font-weight: 600;
}

.shift-modal__close[b-p0x01683xs] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 2px;
}

.shift-modal__body[b-p0x01683xs] {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shift-modal__info-grid[b-p0x01683xs] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shift-modal__info-row[b-p0x01683xs] {
    display: flex;
    gap: 8px;
    font-size: 0.82rem;
}

.shift-modal__info-label[b-p0x01683xs] {
    color: #6c757d;
    min-width: 80px;
}

.shift-modal__info-value[b-p0x01683xs] {
    color: #212529;
    font-weight: 500;
}

.shift-modal__info-value--mono[b-p0x01683xs] {
    font-family: monospace;
    font-size: 0.78rem;
}

.shift-status-badge[b-p0x01683xs] {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 0.74rem;
    font-weight: 600;
}

.shift-status-badge--open[b-p0x01683xs] {
    background: #e0f0fb;
    color: #017DC0;
}

.shift-status-badge--closed[b-p0x01683xs] {
    background: #f1f3f5;
    color: #6c757d;
}

.shift-status-badge--unknown[b-p0x01683xs] {
    background: #fff3cd;
    color: #856404;
}

.shift-modal__actions[b-p0x01683xs] {
    display: flex;
    gap: 8px;
}

.shift-modal__btn[b-p0x01683xs] {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.15s;
}

    .shift-modal__btn:disabled[b-p0x01683xs] {
        opacity: 0.55;
        cursor: not-allowed;
    }

.shift-modal__btn--primary[b-p0x01683xs] {
    background: #017DC0;
    color: #fff;
}

.shift-modal__btn--secondary[b-p0x01683xs] {
    background: #e9ecef;
    color: #495057;
}

.shift-modal__btn--danger[b-p0x01683xs] {
    background: #dc3545;
    color: #fff;
}

.shift-modal__log[b-p0x01683xs] {
    background: #1e1e2e;
    border-radius: 5px;
    padding: 10px 12px;
    font-family: monospace;
    font-size: 0.74rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-height: 150px;
    overflow-y: auto;
}

.shift-modal__log-header[b-p0x01683xs] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shift-modal__log-copy[b-p0x01683xs] {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #888;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    transition: background 0.15s;
}

    .shift-modal__log-copy:hover[b-p0x01683xs] {
        background: rgba(255,255,255,0.15);
        color: #ccc;
    }

.shift-modal__log-title[b-p0x01683xs] {
    color: #888;
    font-size: 0.7rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shift-modal__log-entry[b-p0x01683xs] {
    color: #cdd6f4;
}

    .shift-modal__log-entry.log-ok[b-p0x01683xs] {
        color: #a6e3a1;
    }

    .shift-modal__log-entry.log-error[b-p0x01683xs] {
        color: #f38ba8;
    }

    .shift-modal__log-entry.log-info[b-p0x01683xs] {
        color: #89dceb;
    }




.skeleton-loader[b-p0x01683xs] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-p0x01683xs 1.5s infinite;
    border-radius: 4px;
    display: inline-block;
}

    .skeleton-loader.skeleton-inline[b-p0x01683xs] {
        border-radius: 999px;
    }

/* Skeleton con estilo de display de 7 segmentos (Solo sombra de números) */
.skeleton-7segment[b-p0x01683xs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    font-family: 'Consolas', 'Courier New', monospace;
    font-weight: 900;
    font-size: 0.95rem;
    color: #adb5bd;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    user-select: none;
    min-width: 2.5rem;
    height: 1rem;
}

    .skeleton-7segment[b-p0x01683xs]::before {
        content: "00.00";
        opacity: 0.45;
        font-style: normal;
    }

    .skeleton-7segment[b-p0x01683xs]::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 150%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
        animation: shimmer-7seg-b-p0x01683xs 1.8s infinite linear;
    }

@keyframes loading-b-p0x01683xs {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes shimmer-7seg-b-p0x01683xs {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

.preset-status-badge[b-p0x01683xs] {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.34em 0.72em;
    margin-left: 0.5rem;
    border-radius: 0;
    color: #ffffff;
    background-color: #017DC0;
    box-shadow: 0 2px 6px rgba(1, 125, 192, 0.10);
}

    .preset-status-badge.status-inprogress[b-p0x01683xs] {
        background-color: rgba(255, 255, 255, 0.94);
        color: #017DC0;
        border: 1px solid rgba(1, 125, 192, 0.14);
        box-shadow: 0 3px 8px rgba(1, 125, 192, 0.12);
    }

    .preset-status-badge.status-queued[b-p0x01683xs],
    .preset-status-badge.status-pending[b-p0x01683xs],
    .preset-status-badge.status-sent[b-p0x01683xs],
    .preset-status-badge.status-awaitingauth[b-p0x01683xs] {
        background-color: rgba(255, 255, 255, 0.94);
        color: #017DC0;
        border: 1px solid rgba(1, 125, 192, 0.12);
        box-shadow: 0 3px 8px rgba(1, 125, 192, 0.10);
    }

    .preset-status-badge.status-completed[b-p0x01683xs] {
        background-color: #e9f7ef;
        color: #2f855a;
        box-shadow: 0 2px 6px rgba(47, 133, 90, 0.08);
    }

    .preset-status-badge.status-failed[b-p0x01683xs] {
        background-color: #fdeceb;
        color: #c24132;
        box-shadow: 0 2px 6px rgba(194, 65, 50, 0.08);
    }

.preset-status-badge__count[b-p0x01683xs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0.82rem;
    height: 0.82rem;
    padding: 0 0.12rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-size: 0.56rem;
    font-weight: 600;
    line-height: 1;
    opacity: 0.9;
    transform: translateY(-0.04rem);
}

.dispensing-status[b-p0x01683xs] {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.67rem; /* 10% más pequeño que 0.75rem */
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #495057;
    position: relative;
    overflow: hidden;
}

    .dispensing-status.status-active[b-p0x01683xs] {
        color: #2a9d39;
    }

    .dispensing-status.status-idle[b-p0x01683xs] {
        color: #6c757d;
    }

    .dispensing-status.status-warning[b-p0x01683xs] {
        color: #b35b00;
    }

    .dispensing-status.status-offline[b-p0x01683xs] {
        color: #c24132;
    }

    .dispensing-status.status-not-configured[b-p0x01683xs] {
        color: #9e9e9e;
        font-style: italic;
    }

.skeleton-text[b-p0x01683xs] {
    display: inline-block;
    color: #adb5bd;
}

    .skeleton-text[b-p0x01683xs]::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 150%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
        animation: shimmer-7seg-b-p0x01683xs 2s infinite linear;
    }

.dispensing-timestamp[b-p0x01683xs] {
    display: inline;
    font-size: inherit;
    color: inherit;
    margin-left: 0.35rem;
    opacity: 0.7;
}

.channel-filter-indicator[b-p0x01683xs] {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    font-size: 0.70rem;
    font-weight: 600;
    color: #6c757d;
    border: 1px solid #6c757d;
    border-radius: 8px;
    background: transparent;
    vertical-align: middle;
}

@keyframes pulse-b-p0x01683xs {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes pulse-blue-b-p0x01683xs {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
}

@keyframes pulse-warning-b-p0x01683xs {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes pulse-danger-b-p0x01683xs {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

.device-card-loading .info__value[b-p0x01683xs] {
    opacity: 0.7;
}
/* /Pages/Home/Components/DeviceCardSettingsModal.razor.rz.scp.css */
.device-settings-modal[b-btz9qpcmc8] {
    padding: 0.4rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.settings-toggle-list[b-btz9qpcmc8] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.settings-toggle[b-btz9qpcmc8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.28rem 0.4rem;
    background: #f8f9fa;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .settings-toggle:hover[b-btz9qpcmc8] {
        background: #e9ecef;
    }

.settings-toggle__label[b-btz9qpcmc8] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #495057;
}

.settings-toggle__icon-wrap[b-btz9qpcmc8] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    flex-shrink: 0;
    color: #6c757d;
    font-size: 0.72rem;
}

.settings-toggle__input[b-btz9qpcmc8] {
    display: none;
}

.settings-toggle__switch[b-btz9qpcmc8] {
    position: relative;
    width: 2.1rem;
    height: 1.1rem;
    background: #ced4da;
    border-radius: 999px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

    .settings-toggle__switch[b-btz9qpcmc8]::after {
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        width: 0.85rem;
        height: 0.85rem;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
        transition: transform 0.2s ease;
    }

.settings-toggle__input:checked ~ .settings-toggle__switch[b-btz9qpcmc8] {
    background: #017DC0;
}

.settings-toggle__input:checked ~ .settings-toggle__switch[b-btz9qpcmc8]::after {
    transform: translateX(0.95rem);
}

.settings-actions[b-btz9qpcmc8] {
    display: flex;
    justify-content: flex-end;
    gap: 0.35rem;
    padding-top: 0.3rem;
    border-top: 1px solid #e9ecef;
}

.settings-btn[b-btz9qpcmc8] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    border: none;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease;
}

.settings-btn--save[b-btz9qpcmc8] {
    background: #017DC0;
    color: #fff;
}

    .settings-btn--save:hover[b-btz9qpcmc8] {
        background: #015f92;
    }

.settings-btn--cancel[b-btz9qpcmc8] {
    background: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

    .settings-btn--cancel:hover[b-btz9qpcmc8] {
        background: #f8f9fa;
    }
/* /Pages/Home/Components/DeviceLoadingCarousel.razor.rz.scp.css */
.device-loading-container[b-tfa8n3j27f] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 600px;
    width: 100%;
    padding: 3rem 2rem;
    gap: 3rem;
}

.device-carousel[b-tfa8n3j27f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.carousel-content[b-tfa8n3j27f] {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 1rem;
    overflow: hidden;
    justify-content: flex-start;
}

.device-card-wrapper[b-tfa8n3j27f] {
    position: absolute;
    top: 0;
    opacity: 0;
    animation: cardRowCycle-b-tfa8n3j27f 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    width: 100%;
    max-width: 320px;
    min-width: 280px;
    pointer-events: none;
    filter: blur(0);
}

.device-card-wrapper:nth-child(1)[b-tfa8n3j27f] {
    left: 0;
    animation-delay: 0s;
}
.device-card-wrapper:nth-child(2)[b-tfa8n3j27f] {
    left: calc(320px + 1.5rem);
    animation-delay: 0.3s;
}
.device-card-wrapper:nth-child(3)[b-tfa8n3j27f] {
    left: calc((320px + 1.5rem) * 2);
    animation-delay: 0.6s;
}
.device-card-wrapper:nth-child(4)[b-tfa8n3j27f] {
    left: calc((320px + 1.5rem) * 3);
    animation-delay: 0.9s;
}

.device-card-wrapper.active[b-tfa8n3j27f] {
    opacity: 1;
    transform: scale(1) translate(0, 0);
    filter: blur(0);
}

/* Disable interactions on loading carousel cards */
.device-card-wrapper[b-tfa8n3j27f]  .card {
    pointer-events: none;
    user-select: none;
}

.device-card-wrapper[b-tfa8n3j27f]  button,
.device-card-wrapper[b-tfa8n3j27f]  select,
.device-card-wrapper[b-tfa8n3j27f]  a {
    pointer-events: none !important;
    cursor: default !important;
}

.loading-text[b-tfa8n3j27f] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.loading-text-animated[b-tfa8n3j27f] {
    position: relative;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(to left, #1a4096, #1a4096, rgba(255, 255, 255, 0.7), #1a4096, #1a4096);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: light-effect-b-tfa8n3j27f 2s linear infinite;
    background-size: 200% 100%;
}

@keyframes light-effect-b-tfa8n3j27f {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Desktop animation - horizontal row that cycles continuously */
@keyframes cardRowCycle-b-tfa8n3j27f {
    0% {
        opacity: 0;
        transform: scale(0.9) translateX(100px) translateY(-20px);
        filter: blur(3px);
    }
    15% {
        opacity: 0.8;
        transform: scale(0.95) translateX(20px) translateY(-5px);
        filter: blur(1px);
    }
    25% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        filter: blur(0);
    }
    70% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        filter: blur(0);
    }
    85% {
        opacity: 0.5;
        transform: scale(0.95) translateX(-20px) translateY(10px);
        filter: blur(2px);
    }
    100% {
        opacity: 0;
        transform: scale(0.9) translateX(-100px) translateY(20px);
        filter: blur(3px);
    }
}

/* Mobile animation - vertical stack that cycles through devices */
@keyframes cardStackInMobile-b-tfa8n3j27f {
    0% {
        opacity: 0;
        transform: scale(0.85) translate(100%, -50px);
        filter: blur(4px);
    }
    5% {
        opacity: 0.3;
        transform: scale(0.9) translate(50%, -30px);
        filter: blur(2px);
    }
    10% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        filter: blur(0);
    }
    20% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        filter: blur(0);
    }
    23% {
        opacity: 0.7;
        transform: scale(0.95) translate(-10px, 5px);
        filter: blur(1px);
    }
    25% {
        opacity: 0;
        transform: scale(0.9) translate(-50px, 20px);
        filter: blur(4px);
    }
    100% {
        opacity: 0;
        transform: scale(0.85) translate(-100%, 50px);
        filter: blur(4px);
    }
}

@keyframes pulse-b-tfa8n3j27f {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .device-loading-container[b-tfa8n3j27f] {
        min-height: 450px;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .carousel-content[b-tfa8n3j27f] {
        min-height: 350px;
        display: block;
    }

    .device-card-wrapper[b-tfa8n3j27f] {
        max-width: 100%;
        min-width: unset;
        position: absolute;
        top: 0;
        left: 0 !important;
        animation-name: cardStackInMobile-b-tfa8n3j27f !important;
        animation-duration: 8s !important;
        animation-timing-function: ease-in-out !important;
        animation-iteration-count: infinite !important;
        animation-fill-mode: both !important;
    }

    .device-card-wrapper:nth-child(1)[b-tfa8n3j27f] {
        animation-delay: 0s !important;
    }
    .device-card-wrapper:nth-child(2)[b-tfa8n3j27f] {
        animation-delay: 2s !important;
    }
    .device-card-wrapper:nth-child(3)[b-tfa8n3j27f] {
        animation-delay: 4s !important;
    }
    .device-card-wrapper:nth-child(4)[b-tfa8n3j27f] {
        animation-delay: 6s !important;
    }

    .loading-text[b-tfa8n3j27f] {
        font-size: 1.4rem;
    }

    .spinner-dot[b-tfa8n3j27f] {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .device-loading-container[b-tfa8n3j27f] {
        padding: 1.5rem 0.5rem;
        gap: 1.5rem;
    }

    .carousel-content[b-tfa8n3j27f] {
        min-height: 320px;
        padding: 0.5rem;
    }

    .loading-text[b-tfa8n3j27f] {
        font-size: 1.2rem;
    }

    .spinner-dot[b-tfa8n3j27f] {
        width: 12px;
        height: 12px;
    }
}
/* /Pages/Home/Components/DispatchProgressIndicator.razor.rz.scp.css */
.dprog[b-6graei4s16] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dprog__btn[b-6graei4s16] {
    border: none;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #08324d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.dprog__btn:hover[b-6graei4s16] {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    transform: translateY(-1px);
}

.dprog__btn--active[b-6graei4s16] {
    background: rgba(255, 255, 255, 0.28);
    animation: dprog-pulse-b-6graei4s16 2s ease-in-out infinite;
}

.dprog__btn--active:hover[b-6graei4s16] {
    background: rgba(255, 255, 255, 0.38);
}

.dprog__btn i[b-6graei4s16] {
    font-size: 1rem;
}

@keyframes dprog-pulse-b-6graei4s16 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

.dprog__overlay[b-6graei4s16] {
    position: fixed;
    inset: 0;
    z-index: 1199;
    background: transparent;
    cursor: default;
}

.dprog__popover[b-6graei4s16] {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: -0.5rem;
    z-index: 1200;
    pointer-events: auto;
}

@media (max-width: 480px) {
    .dprog__popover[b-6graei4s16] {
        left: 50%;
        transform: translateX(-50%);
    }
}

.dprog__screen[b-6graei4s16] {
    background: #ffffff;
    border: 1.5px solid #549fdd;
    border-radius: 10px;
    min-width: 200px;
    max-width: 240px;
    box-shadow: 0 8px 28px rgba(84, 159, 221, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dprog__header[b-6graei4s16] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0.65rem;
    background: #fff;
    border-bottom: 1px solid #e0e8f0;
}

.dprog__title[b-6graei4s16] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #549fdd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dprog__close[b-6graei4s16] {
    flex-shrink: 0;
    border: none;
    background: #e8f4fd;
    color: #549fdd;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background 0.15s;
}

.dprog__close:hover[b-6graei4s16] {
    background: #549fdd;
    color: #fff;
}

.dprog__tabs[b-6graei4s16] {
    display: flex;
    gap: 0.3rem;
    padding: 0.4rem 0.65rem;
    justify-content: center;
    border-bottom: 1px solid #e0e8f0;
}

.dprog__tab[b-6graei4s16] {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.dprog__tab:hover[b-6graei4s16] {
    border-color: #93c5fd;
    color: #2563eb;
}

.dprog__tab--active[b-6graei4s16] {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.dprog__tab--active:hover[b-6graei4s16] {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.dprog__entry[b-6graei4s16] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem 0.65rem;
}

.dprog__entry-row[b-6graei4s16] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dprog__entry-type[b-6graei4s16] {
    font-size: 0.65rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
}

.dprog__entry-status[b-6graei4s16] {
    font-size: 0.6rem;
    color: #2563eb;
    font-weight: 500;
}

.dprog__bar-track[b-6graei4s16] {
    width: 100%;
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.dprog__bar-fill[b-6graei4s16] {
    height: 100%;
    background: linear-gradient(90deg, #93c5fd, #2563eb);
    transition: width 0.3s ease;
    border-radius: 3px;
    min-width: 0;
}

.dprog__counter[b-6graei4s16] {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

.dprog__eta[b-6graei4s16] {
    font-size: 0.6rem;
    color: #94a3b8;
}

.dprog__empty[b-6graei4s16] {
    font-size: 0.7rem;
    color: #94a3b8;
    text-align: center;
    padding: 0.7rem;
}

.dprog__type-label[b-6graei4s16] {
    font-size: 0.55rem;
    color: #94a3b8;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .dprog__screen[b-6graei4s16] {
        min-width: 9rem;
        max-width: 12rem;
    }

    .dprog__counter[b-6graei4s16] {
        font-size: 0.7rem;
    }
}
/* /Pages/Home/Components/GradientsSVG.razor.rz.scp.css */
/* /Pages/Home/Components/PosDeviceCard.razor.rz.scp.css */
.pref-hidden[b-mwzl72df8h] {
    color: transparent !important;
    position: relative;
    user-select: none;
    pointer-events: none;
    min-width: 3rem;
    min-height: 0.85rem;
}

    .pref-hidden[b-mwzl72df8h]::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 0.55rem;
        background: #e9ecef;
        border-radius: 999px;
    }

.card[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    width: 20rem;
    max-width: 20rem;
    min-width: 20rem;
    border: 1px solid #d9e2ec;
    margin: 1rem 1.25rem 0 1.25rem;
    border-radius: 1rem;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.2s ease;
    overflow: visible;
    height: auto;
    align-self: flex-start;
}

.card__content[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.5rem;
    height: auto;
}

.card.device-card--collapsed[b-mwzl72df8h] {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.05);
    min-height: 18.75rem;
}

    .card.device-card--collapsed .card__content[b-mwzl72df8h] {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

.content__header[b-mwzl72df8h] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0.6rem;
}

.title__device[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    align-items: flex-start;
    width: 100%;
    max-width: calc(100% - 32px);
    min-height: 2.8rem;
}

.title__device--with-connectivity-note[b-mwzl72df8h] {
    padding-right: 8.5rem;
}

.device__serial[b-mwzl72df8h] {
    font-size: 1.2rem;
    color: #017DC0;
    align-content: center;
}

.device__name[b-mwzl72df8h] {
    font-size: 1.3rem;
    color: #017DC0;
    margin-left: 5px;
    margin-top: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.shift-row[b-mwzl72df8h] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 5px;
    line-height: 1;
}

.shift-section[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.shift-section--hidden[b-mwzl72df8h] {
    visibility: hidden;
}

.shift-label[b-mwzl72df8h] {
    font-size: 0.73rem;
    color: #6c757d;
    font-weight: 400;
}

.shift-icon[b-mwzl72df8h] {
    font-size: 0.68rem;
    flex-shrink: 0;
    position: relative;
    top: -1.5px;
}

    .shift-icon.shift-open[b-mwzl72df8h] {
        color: #017DC0;
    }

    .shift-icon.shift-closed[b-mwzl72df8h] {
        color: #9ca3af;
    }

    .shift-icon.shift-unknown[b-mwzl72df8h] {
        color: #9ca3af;
    }

.shift-row--clickable[b-mwzl72df8h] {
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.15s;
}

    .shift-row--clickable:hover[b-mwzl72df8h] {
        background: rgba(1, 125, 192, 0.08);
    }

.header__content[b-mwzl72df8h] {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0.5rem;
}

.content__hose[b-mwzl72df8h] {
    overflow: hidden;
    padding-left: 0.35rem;
    flex: 1 1 42%;
}

.hose[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
}

img.hose__img[b-mwzl72df8h] {
    width: 3.5rem;
    height: 2.6rem;
    transform: rotate(20deg);
    margin-top: -2px;
    margin-left: -5px;
}

.hose__drop[b-mwzl72df8h] {
    font-size: 0.9rem;
    color: #017DC0;
    margin-top: 2px;
    align-self: center;
    margin-left: -2.4rem;
}

.hose__drop--dispensing[b-mwzl72df8h] {
    animation: dropPulse-b-mwzl72df8h 1s ease-in-out infinite;
}

@keyframes dropPulse-b-mwzl72df8h {
    0% {
        transform: scale(1.1);
        opacity: 1;
    }

    50% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hose__total[b-mwzl72df8h] {
    padding: 0.25rem 0.25rem 0.15rem;
    min-height: 5.9rem;
}

/* Oculta visualmente el elemento sin eliminar su espacio en el layout */
.hose-row--hidden[b-mwzl72df8h] {
    visibility: hidden;
}

.total__title[b-mwzl72df8h] {
    text-align: left;
}

.total__volume-row[b-mwzl72df8h] {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    min-height: 1.6rem;
}

.total__volume[b-mwzl72df8h] {
    font-size: 1.2rem;
    font-weight: 800;
}

.total__unit[b-mwzl72df8h] {
    font-size: 0.85rem;
}

.total__money[b-mwzl72df8h] {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #6c757d;
    line-height: 1.2;
}

.total__money--na[b-mwzl72df8h] {
    font-weight: 400;
    color: #adb5bd;
}

.content__device[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    flex: 1 1 58%;
    height: 10.5rem;
    min-height: 10.5rem;
    text-align: right;
    overflow: visible;
}

.device__image-frame[b-mwzl72df8h] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 7.9rem;
}

.device__img[b-mwzl72df8h] {
    width: 9.75rem !important;
    max-height: 10rem;
    height: auto;
    margin-right: 0.15rem;
    transform: translateY(-30%);
    object-fit: contain;
    transition: all 0.3s ease;
}

.device__preset-slot[b-mwzl72df8h] {
    width: 100%;
    min-height: 2.4rem;
    margin-top: 0.1rem;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.device__preset-slot--empty[b-mwzl72df8h] {
    visibility: hidden;
}

.preset-status-badge--device[b-mwzl72df8h] {
    margin-left: 0;
    min-width: 6rem;
    justify-content: center;
    transform: translateY(50%) translateX(-24%);
}


.content__footer[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.2s ease, visibility 0s linear 0.35s;
}

    .content__footer.show[b-mwzl72df8h] {
        max-height: 30rem;
        opacity: 1;
        visibility: visible;
        padding-bottom: 0.35rem;
        overflow: visible;
        transition: max-height 0.35s ease, opacity 0.2s ease 0.15s, visibility 0s linear 0s;
    }

.footer__info[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    margin-top: 0.65rem;
}

.info__item[b-mwzl72df8h] {
    display: flex;
    flex-direction: row;
    min-height: 2.4rem;
    margin-left: 1rem;
    align-items: center;
}

.info__title[b-mwzl72df8h] {
    font-size: 0.92rem;
    color: #6c757d;
    margin-left: 0.9rem;
    line-height: 1.1;
}


.dispensing-status[b-mwzl72df8h] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.15rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-text[b-mwzl72df8h] {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 500;
}

.pulse-animation[b-mwzl72df8h] {
    color: #28a745;
    animation: pulse-b-mwzl72df8h 1.5s infinite;
}

@keyframes pulse-b-mwzl72df8h {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.info__value[b-mwzl72df8h] {
    font-size: 0.92rem;
    font-weight: 600;
    margin-left: 0.9rem;
    margin-bottom: 0;
    line-height: 1.15;
}

.info__icon[b-mwzl72df8h] {
    align-content: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    min-width: 1.85rem;
    height: 1.85rem;
    background: #EEEDF0;
    border-radius: 8px;
    padding: 0;
    font-size: 0.9rem;
}

.info__separator[b-mwzl72df8h] {
    align-self: center;
    border-bottom: solid 1px;
    border-color: #D0D0D0;
    width: calc(100% - 2rem);
    margin-bottom: 0.35rem;
}

.footer__channels[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 0.65rem 1rem 0.25rem;
}

.footer__channel-row[b-mwzl72df8h] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    background: #f4f7fb;
    border: 1px solid #dbe4ef;
}

.footer__channel-name[b-mwzl72df8h] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5568;
    letter-spacing: 0.04em;
}

.footer__channel-btn[b-mwzl72df8h] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    border-radius: 50%;
    background: #017DC0;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    font-size: 0.75rem;
}

    .footer__channel-btn:hover[b-mwzl72df8h] {
        background: #0169a8;
        transform: translateY(-1px);
    }

.footer__buttons[b-mwzl72df8h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.3rem;
    background-color: #549fdd;
    margin: 1rem;
    margin-bottom: 0.25rem;
    border-radius: 10rem;
    overflow: visible;
    padding: 0.15rem 0.35rem;
}

.footer__actions[b-mwzl72df8h] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer__icon-btn[b-mwzl72df8h] {
    border: none;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #08324d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

    .footer__icon-btn:hover:not(:disabled)[b-mwzl72df8h] {
        background: rgba(255, 255, 255, 0.22);
        color: #ffffff;
        transform: translateY(-1px);
    }

    .footer__icon-btn:disabled[b-mwzl72df8h] {
        opacity: 0.55;
        cursor: not-allowed;
    }

.footer__icon-btn--stop[b-mwzl72df8h] {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

    .footer__icon-btn--stop:hover:not(:disabled)[b-mwzl72df8h] {
        background: rgba(220, 53, 69, 0.35);
        color: #ffffff;
    }

.footer__icon-btn i[b-mwzl72df8h] {
    font-size: 1rem;
}

.footer__btn[b-mwzl72df8h] {
    border: none;
    background-color: transparent;
    color: #000000;
    padding: 0.24rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;
}

    .footer__btn:hover:not(:disabled)[b-mwzl72df8h] {
        background-color: #aed6f7;
    }

    .footer__btn:disabled[b-mwzl72df8h] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.footer__btn-left[b-mwzl72df8h] {
    border-top-left-radius: 10rem;
    border-bottom-left-radius: 10rem;
}

.footer__btn-right[b-mwzl72df8h] {
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
    margin-left: auto;
    min-width: 5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.channel-dropdown-icon[b-mwzl72df8h] {
    font-size: 0.85rem;
    color: #08324d;
    pointer-events: none;
    align-self: center;
}

.channel-dropdown[b-mwzl72df8h],
.hose-dropdown[b-mwzl72df8h] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    color: #000000;
    padding: 0.22rem 2rem 0.22rem 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    text-align-last: center;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1.2rem;
}

    .channel-dropdown:disabled[b-mwzl72df8h],
    .hose-dropdown:disabled[b-mwzl72df8h] {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .channel-dropdown:focus[b-mwzl72df8h],
    .hose-dropdown:focus[b-mwzl72df8h] {
        outline: none;
        background-color: rgba(255, 255, 255, 0.1);
    }

.hose-dropdown[b-mwzl72df8h] {
    margin-left: 1rem;
    background-color: rgba(255, 192, 0, 0.18);
    border-radius: 5px;
}

.footer__icon-btn--status-active[b-mwzl72df8h] {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 18px rgba(1, 125, 192, 0.38);
}

    .footer__icon-btn--status-active:hover:not(:disabled)[b-mwzl72df8h] {
        background: rgba(255, 255, 255, 0.28);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), 0 0 22px rgba(1, 125, 192, 0.42);
    }

.header__nav-control[b-mwzl72df8h] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 1.9rem;
    height: 1.9rem;
    margin: 0.1rem 0 0 0.75rem;
    color: #017DC0;
    text-decoration: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

    .header__nav-control i[b-mwzl72df8h] {
        font-size: 1.15rem;
        font-weight: 900;
    }

    .header__nav-control:hover[b-mwzl72df8h] {
        transform: translateY(1px);
    }

@keyframes slide-down-b-mwzl72df8h {
    from {
        max-height: 0;
        opacity: 0;
    }

    to {
        max-height: 30rem;
        opacity: 1;
    }
}

@keyframes slide-up-b-mwzl72df8h {
    from {
        max-height: 30rem;
        opacity: 1;
    }

    to {
        max-height: 0;
        opacity: 0;
    }
}

.connectivity-indicator-shell[b-mwzl72df8h] {
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.connectivity-indicator-note[b-mwzl72df8h] {
    max-width: 8.5rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #017DC0;
    border: 1px solid rgba(1, 125, 192, 0.14);
    box-shadow: 0 6px 14px rgba(1, 125, 192, 0.12);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
    white-space: nowrap;
}

.connectivity-indicator[b-mwzl72df8h] {
    border: none;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.015);
    font-size: 10px;
}

    .connectivity-indicator:hover[b-mwzl72df8h] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.12);
    }

    .connectivity-indicator:active[b-mwzl72df8h] {
        transform: translateY(0);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    }

    .connectivity-indicator i[b-mwzl72df8h] {
        transition: transform 0.6s ease;
        transform-origin: center center;
        display: block;
        line-height: 1;
    }

    .connectivity-indicator:hover i[b-mwzl72df8h] {
        transform: rotate(180deg);
    }

.connectivity-online[b-mwzl72df8h] {
    color: #4D944D;
    border: 1px solid #a0c8a0;
}

    .connectivity-online:hover[b-mwzl72df8h] {
        background: #e8f5e8;
    }

.connectivity-warning[b-mwzl72df8h] {
    color: #c4a882;
    border: 1px solid #e0d2b8;
}

    .connectivity-warning:hover[b-mwzl72df8h] {
        background: #faf9f6;
    }

.connectivity-offline[b-mwzl72df8h] {
    color: #c8a8a8;
    border: 1px solid #e4d4d4;
}

    .connectivity-offline:hover[b-mwzl72df8h] {
        background: #faf8f8;
    }

.connectivity-active[b-mwzl72df8h] {
    color: #17a2b8;
    border: 2px solid #17a2b8;
    animation: pulse-glow-b-mwzl72df8h 2s infinite;
}

    .connectivity-active:hover[b-mwzl72df8h] {
        background: #f0fdff;
    }

.connectivity-unknown[b-mwzl72df8h] {
    color: #c5cbd3;
    border: 1px solid #f1f3f4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

    .connectivity-unknown:hover[b-mwzl72df8h] {
        background: #fafafa;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    }

@keyframes pulse-glow-b-mwzl72df8h {
    0% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(23, 162, 184, 0.4);
    }

    50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(23, 162, 184, 0.1);
    }

    100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(23, 162, 184, 0);
    }
}

@media (max-width: 805px) {
    .card[b-mwzl72df8h] {
        margin: 0.65rem auto;
    }

        .card.device-card--collapsed[b-mwzl72df8h] {
            width: min(18.25rem, calc(100vw - 3.2rem));
            min-width: min(18.25rem, calc(100vw - 3.2rem));
            max-width: min(18.25rem, calc(100vw - 3.2rem));
        }
}

.signalr-status-note[b-mwzl72df8h] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 0 32px 0 4px;
    font-size: 0.75rem;
    color: #b35b00;
    line-height: 1.2;
}

    .signalr-status-note i[b-mwzl72df8h] {
        color: #b35b00;
        font-size: 0.75rem;
    }

.dispensing-timestamp[b-mwzl72df8h] {
    display: inline;
    font-size: inherit;
    color: inherit;
    margin-left: 0.35rem;
    opacity: 0.7;
}

/* Shift command modal */
.shift-modal-overlay[b-mwzl72df8h] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shift-modal[b-mwzl72df8h] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    min-width: 320px;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
}

.shift-modal__header[b-mwzl72df8h] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #017DC0;
    color: #fff;
    cursor: grab;
    user-select: none;
}

.shift-modal__title[b-mwzl72df8h] {
    font-size: 0.95rem;
    font-weight: 600;
}

.shift-modal__close[b-mwzl72df8h] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 2px;
}

.shift-modal__body[b-mwzl72df8h] {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shift-modal__info-grid[b-mwzl72df8h] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shift-modal__info-row[b-mwzl72df8h] {
    display: flex;
    gap: 8px;
    font-size: 0.82rem;
}

.shift-modal__info-label[b-mwzl72df8h] {
    color: #6c757d;
    min-width: 80px;
}

.shift-modal__info-value[b-mwzl72df8h] {
    color: #212529;
    font-weight: 500;
}

.shift-modal__info-value--mono[b-mwzl72df8h] {
    font-family: monospace;
    font-size: 0.78rem;
}

.shift-status-badge[b-mwzl72df8h] {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 0.74rem;
    font-weight: 600;
}

.shift-status-badge--open[b-mwzl72df8h] {
    background: #e0f0fb;
    color: #017DC0;
}

.shift-status-badge--closed[b-mwzl72df8h] {
    background: #f1f3f5;
    color: #6c757d;
}

.shift-status-badge--unknown[b-mwzl72df8h] {
    background: #fff3cd;
    color: #856404;
}

.shift-modal__actions[b-mwzl72df8h] {
    display: flex;
    gap: 8px;
}

.shift-modal__btn[b-mwzl72df8h] {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.15s;
}

    .shift-modal__btn:disabled[b-mwzl72df8h] {
        opacity: 0.55;
        cursor: not-allowed;
    }

.shift-modal__btn--primary[b-mwzl72df8h] {
    background: #017DC0;
    color: #fff;
}

.shift-modal__btn--secondary[b-mwzl72df8h] {
    background: #e9ecef;
    color: #495057;
}

.shift-modal__btn--danger[b-mwzl72df8h] {
    background: #dc3545;
    color: #fff;
}

.shift-modal__log[b-mwzl72df8h] {
    background: #1e1e2e;
    border-radius: 5px;
    padding: 10px 12px;
    font-family: monospace;
    font-size: 0.74rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-height: 150px;
    overflow-y: auto;
}

.shift-modal__log-header[b-mwzl72df8h] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shift-modal__log-copy[b-mwzl72df8h] {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #888;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    transition: background 0.15s;
}

    .shift-modal__log-copy:hover[b-mwzl72df8h] {
        background: rgba(255,255,255,0.15);
        color: #ccc;
    }

.shift-modal__log-title[b-mwzl72df8h] {
    color: #888;
    font-size: 0.7rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shift-modal__log-entry[b-mwzl72df8h] {
    color: #cdd6f4;
}

    .shift-modal__log-entry.log-ok[b-mwzl72df8h] {
        color: #a6e3a1;
    }

    .shift-modal__log-entry.log-error[b-mwzl72df8h] {
        color: #f38ba8;
    }

    .shift-modal__log-entry.log-info[b-mwzl72df8h] {
        color: #89dceb;
    }




.skeleton-loader[b-mwzl72df8h] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-mwzl72df8h 1.5s infinite;
    border-radius: 4px;
    display: inline-block;
}

    .skeleton-loader.skeleton-inline[b-mwzl72df8h] {
        border-radius: 999px;
    }

/* Skeleton con estilo de display de 7 segmentos (Solo sombra de números) */
.skeleton-7segment[b-mwzl72df8h] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    font-family: 'Consolas', 'Courier New', monospace;
    font-weight: 900;
    font-size: 0.95rem;
    color: #adb5bd;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    user-select: none;
    min-width: 2.5rem;
    height: 1rem;
}

    .skeleton-7segment[b-mwzl72df8h]::before {
        content: "00.00";
        opacity: 0.45;
        font-style: normal;
    }

    .skeleton-7segment[b-mwzl72df8h]::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 150%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
        animation: shimmer-7seg-b-mwzl72df8h 1.8s infinite linear;
    }

@keyframes loading-b-mwzl72df8h {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes shimmer-7seg-b-mwzl72df8h {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

.preset-status-badge[b-mwzl72df8h] {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.34em 0.72em;
    margin-left: 0.5rem;
    border-radius: 0;
    color: #ffffff;
    background-color: #017DC0;
    box-shadow: 0 2px 6px rgba(1, 125, 192, 0.10);
}

    .preset-status-badge.status-inprogress[b-mwzl72df8h] {
        background-color: rgba(255, 255, 255, 0.94);
        color: #017DC0;
        border: 1px solid rgba(1, 125, 192, 0.14);
        box-shadow: 0 3px 8px rgba(1, 125, 192, 0.12);
    }

    .preset-status-badge.status-queued[b-mwzl72df8h],
    .preset-status-badge.status-pending[b-mwzl72df8h],
    .preset-status-badge.status-sent[b-mwzl72df8h],
    .preset-status-badge.status-awaitingauth[b-mwzl72df8h] {
        background-color: rgba(255, 255, 255, 0.94);
        color: #017DC0;
        border: 1px solid rgba(1, 125, 192, 0.12);
        box-shadow: 0 3px 8px rgba(1, 125, 192, 0.10);
    }

    .preset-status-badge.status-completed[b-mwzl72df8h] {
        background-color: #e9f7ef;
        color: #2f855a;
        box-shadow: 0 2px 6px rgba(47, 133, 90, 0.08);
    }

    .preset-status-badge.status-failed[b-mwzl72df8h] {
        background-color: #fdeceb;
        color: #c24132;
        box-shadow: 0 2px 6px rgba(194, 65, 50, 0.08);
    }

.preset-status-badge__count[b-mwzl72df8h] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0.82rem;
    height: 0.82rem;
    padding: 0 0.12rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-size: 0.56rem;
    font-weight: 600;
    line-height: 1;
    opacity: 0.9;
    transform: translateY(-0.04rem);
}

.dispensing-status[b-mwzl72df8h] {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.67rem; /* 10% más pequeño que 0.75rem */
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #495057;
    position: relative;
    overflow: hidden;
}

    .dispensing-status.status-active[b-mwzl72df8h] {
        color: #2a9d39;
    }

    .dispensing-status.status-idle[b-mwzl72df8h] {
        color: #6c757d;
    }

    .dispensing-status.status-warning[b-mwzl72df8h] {
        color: #b35b00;
    }

    .dispensing-status.status-offline[b-mwzl72df8h] {
        color: #c24132;
    }

    .dispensing-status.status-not-configured[b-mwzl72df8h] {
        color: #9e9e9e;
        font-style: italic;
    }

.skeleton-text[b-mwzl72df8h] {
    display: inline-block;
    color: #adb5bd;
}

    .skeleton-text[b-mwzl72df8h]::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 150%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
        animation: shimmer-7seg-b-mwzl72df8h 2s infinite linear;
    }

.dispensing-timestamp[b-mwzl72df8h] {
    display: inline;
    font-size: inherit;
    color: inherit;
    margin-left: 0.35rem;
    opacity: 0.7;
}

.channel-filter-indicator[b-mwzl72df8h] {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    font-size: 0.70rem;
    font-weight: 600;
    color: #6c757d;
    border: 1px solid #6c757d;
    border-radius: 8px;
    background: transparent;
    vertical-align: middle;
}

@keyframes pulse-b-mwzl72df8h {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes pulse-blue-b-mwzl72df8h {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
}

@keyframes pulse-warning-b-mwzl72df8h {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes pulse-danger-b-mwzl72df8h {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

.device-card-loading .info__value[b-mwzl72df8h] {
    opacity: 0.7;
}

.chpop[b-mwzl72df8h] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.chpop__trigger[b-mwzl72df8h] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: #08324d;
    padding: 0.22rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    min-width: 4.5rem;
    justify-content: center;
    white-space: nowrap;
}

.chpop__trigger:hover:not(:disabled)[b-mwzl72df8h] {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.chpop__trigger--active[b-mwzl72df8h] {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.chpop__trigger:disabled[b-mwzl72df8h] {
    opacity: 0.55;
    cursor: not-allowed;
}

.chpop__badge[b-mwzl72df8h] {
    font-weight: 700;
}

.chpop__arrow[b-mwzl72df8h] {
    font-size: 0.65rem;
}

.chpop__panel[b-mwzl72df8h] {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    right: -0.5rem;
    z-index: 1200;
    min-width: 210px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(84, 159, 221, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: scale(0.85);
    transform-origin: bottom right;
}

.chpop__header[b-mwzl72df8h] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem;
    background: #fff;
    color: #549fdd;
    border-bottom: 1px solid #e0e8f0;
}

.chpop__title[b-mwzl72df8h] {
    flex: 1;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #549fdd;
}

.chpop__close[b-mwzl72df8h] {
    flex-shrink: 0;
    border: none;
    background: #e8f4fd;
    color: #549fdd;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background 0.15s;
}

.chpop__close:hover[b-mwzl72df8h] {
    background: #549fdd;
    color: #fff;
}

.chpop__row[b-mwzl72df8h] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.65rem;
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.12s;
}

.chpop__row:last-child[b-mwzl72df8h] {
    border-bottom: none;
}

.chpop__row:hover[b-mwzl72df8h] {
    background: #f0f7ff;
}

.chpop__channel-label[b-mwzl72df8h] {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 700;
    color: #549fdd;
    min-width: 2rem;
    text-align: right;
}

.chpop__hoses[b-mwzl72df8h] {
    display: flex;
    gap: 0.3rem;
    flex: 1;
    flex-wrap: wrap;
}

.chpop__hose-btn[b-mwzl72df8h] {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.15rem 0.4rem;
    border-radius: 0;
    border: 1px solid #d0e3f5;
    background: #f8fbff;
    cursor: pointer;
    font-size: 0.72rem;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.chpop__hose-btn:hover[b-mwzl72df8h] {
    background: #e8f4fd;
    border-color: #549fdd;
}

.chpop__hose-label[b-mwzl72df8h] {
    font-weight: 600;
    color: #08324d;
}

.chpop__hose-icon[b-mwzl72df8h] {
    font-size: 0.77rem;
    color: #549fdd;
}

.chpop__empty[b-mwzl72df8h] {
    padding: 0.7rem;
    text-align: center;
    color: #888;
    font-size: 0.8rem;
}

.shift-marked-badge[b-mwzl72df8h] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff7e0;
    border: 1px solid #f5c518;
    color: #5a4500;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.7rem;
    margin-top: 2px;
    cursor: help;
}

.shift-marked-badge i[b-mwzl72df8h] {
    color: #b67d00;
}
/* /Pages/Home/Components/PosPresetModal.razor.rz.scp.css */
.pos-preset-modal-shell[b-dr6rzmvvp9] {
    position: relative;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.pos-preset-step-panel[b-dr6rzmvvp9] {
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.pos-preset-loading-state[b-dr6rzmvvp9] {
    height: 100%;
    min-height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pos-preset-submit-guard[b-dr6rzmvvp9] {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: progress;
    background: transparent;
}

:deep(.pos-preset-wizard)[b-dr6rzmvvp9] {
    height: 100%;
}

:deep(.pos-preset-wizard .k-wizard-content)[b-dr6rzmvvp9] {
    min-height: 0;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

:deep(.pos-preset-wizard .k-wizard-step-content)[b-dr6rzmvvp9] {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

:deep(.pos-preset-wizard .k-wizard-step-content > *)[b-dr6rzmvvp9],
:deep(.pos-preset-wizard .k-form)[b-dr6rzmvvp9] {
    min-height: 100%;
}

:deep(.pos-preset-wizard .k-wizard-buttons)[b-dr6rzmvvp9],
:deep(.pos-preset-wizard .k-actions)[b-dr6rzmvvp9] {
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: #fff;
    border-top: 1px solid #dbe4ef;
    padding: 0.9rem 1rem;
}

.pos-preset-modal-shell.is-submitting :deep(.pos-preset-wizard .k-wizard-buttons .k-button)[b-dr6rzmvvp9],
.pos-preset-modal-shell.is-submitting :deep(.pos-preset-wizard .k-actions .k-button)[b-dr6rzmvvp9] {
    pointer-events: none;
    opacity: 0.55;
}

.pos-preset-summary-card[b-dr6rzmvvp9] {
    border: 1px solid #dbe4ef;
    border-radius: 14px;
}

.pos-preset-primary-fields[b-dr6rzmvvp9] {
    display: grid;
    grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    width: 100%;
}

.pos-preset-reference-fields[b-dr6rzmvvp9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.pos-preset-product-highlight[b-dr6rzmvvp9] {
    width: 100%;
    margin-top: 1rem;
}

.pos-preset-odometer-panel[b-dr6rzmvvp9] {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #dbe4ef;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.pos-preset-odometer-header[b-dr6rzmvvp9] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.85rem;
}

.pos-preset-odometer-hint[b-dr6rzmvvp9] {
    color: #4f6982;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pos-preset-odometer-fields[b-dr6rzmvvp9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 1rem;
}

.pos-preset-odometer-field[b-dr6rzmvvp9] {
    min-width: 0;
}

.pos-preset-reference-field[b-dr6rzmvvp9] {
    min-width: 0;
}

.pos-preset-primary-field[b-dr6rzmvvp9] {
    min-width: 0;
}

.pos-preset-readonly-value[b-dr6rzmvvp9] {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    padding: 0.7rem 0.85rem;
    border: 1px solid #dbe4ef;
    border-radius: 10px;
    background: #f7fafd;
    color: #2c425a;
    font-weight: 600;
}

.pos-preset-readonly-value--product[b-dr6rzmvvp9] {
    min-height: 3rem;
    border-color: #bfd6ea;
    background: #eef6ff;
    color: #113a5c;
    font-size: 1rem;
    font-weight: 700;
}

.pos-preset-value-label[b-dr6rzmvvp9] {
    display: block;
    text-align: center;
    width: 100%;
}

.pos-preset-value-input[b-dr6rzmvvp9] {
    max-width: 24rem;
    margin: 0 auto;
}

:deep(.pos-preset-value-input .k-numerictextbox)[b-dr6rzmvvp9] {
    width: 100%;
}

:deep(.pos-preset-value-input .k-input-inner)[b-dr6rzmvvp9] {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
    padding-block: 0.85rem;
}

.pos-preset-activation-key[b-dr6rzmvvp9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pos-preset-activation-key__label[b-dr6rzmvvp9] {
    font-size: 0.9rem;
    color: #2f6a3c;
}

.pos-preset-activation-key__value[b-dr6rzmvvp9] {
    font-size: 2rem;
    letter-spacing: 4px;
    color: #1a4731;
}

@media (max-width: 768px) {
    .pos-preset-primary-fields[b-dr6rzmvvp9] {
        grid-template-columns: 1fr;
    }

    .pos-preset-odometer-panel[b-dr6rzmvvp9] {
        padding: 0.9rem;
    }

    :deep(.pos-preset-wizard .k-form-layout)[b-dr6rzmvvp9] {
        grid-template-columns: 1fr !important;
    }

    :deep(.pos-preset-wizard .k-form-field-wrap)[b-dr6rzmvvp9],
    :deep(.pos-preset-wizard .k-form-field)[b-dr6rzmvvp9] {
        width: 100%;
    }

    .pos-preset-value-input[b-dr6rzmvvp9] {
        max-width: none;
    }

    :deep(.pos-preset-value-input .k-input-inner)[b-dr6rzmvvp9] {
        font-size: 1.45rem;
    }
}
/* /Pages/Home/Components/PresetControlPanel.razor.rz.scp.css */
.footer__buttons[b-3de4frjgx8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.3rem;
    background-color: #549fdd;
    margin: 1rem;
    margin-bottom: 0.25rem;
    border-radius: 10rem;
    overflow: visible;
    padding: 0.15rem 0.35rem;
    position: relative;
}

.footer__actions[b-3de4frjgx8] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer__icon-btn[b-3de4frjgx8] {
    border: none;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #08324d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.footer__icon-btn:hover:not(:disabled)[b-3de4frjgx8] {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    transform: translateY(-1px);
}

.footer__icon-btn:disabled[b-3de4frjgx8] {
    opacity: 0.55;
    cursor: not-allowed;
}

.footer__icon-btn--stop[b-3de4frjgx8] {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.footer__icon-btn--stop:hover:not(:disabled)[b-3de4frjgx8] {
    background: rgba(220, 53, 69, 0.35);
    color: #ffffff;
}

.footer__icon-btn i[b-3de4frjgx8] {
    font-size: 1rem;
}

.footer__btn[b-3de4frjgx8] {
    border: none;
    background-color: transparent;
    color: #000000;
    padding: 0.24rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;
}

.footer__btn:hover:not(:disabled)[b-3de4frjgx8] {
    background-color: #aed6f7;
}

.footer__btn:disabled[b-3de4frjgx8] {
    opacity: 0.7;
    cursor: not-allowed;
}

.footer__btn-left[b-3de4frjgx8] {
    border-top-left-radius: 10rem;
    border-bottom-left-radius: 10rem;
}

.footer__btn-right[b-3de4frjgx8] {
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
    margin-left: auto;
    min-width: 5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.channel-dropdown-icon[b-3de4frjgx8] {
    font-size: 0.85rem;
    color: #08324d;
    pointer-events: none;
    align-self: center;
}

.channel-dropdown[b-3de4frjgx8],
.hose-dropdown[b-3de4frjgx8] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    color: #000000;
    padding: 0.22rem 2rem 0.22rem 1rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2308324d'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
}

.channel-dropdown:disabled[b-3de4frjgx8],
.hose-dropdown:disabled[b-3de4frjgx8] {
    opacity: 0.6;
    cursor: not-allowed;
}

.channel-dropdown:focus[b-3de4frjgx8],
.hose-dropdown:focus[b-3de4frjgx8] {
    background-color: rgba(255, 255, 255, 0.15);
}

.hose-dropdown[b-3de4frjgx8] {
    margin-left: 0.25rem;
    min-width: 3.5rem;
}

.footer__icon-btn--status-active[b-3de4frjgx8] {
    background: rgba(255, 255, 255, 0.28);
    animation: pulse-status-b-3de4frjgx8 2s ease-in-out infinite;
}

.footer__icon-btn--status-active:hover:not(:disabled)[b-3de4frjgx8] {
    background: rgba(255, 255, 255, 0.38);
}

@keyframes pulse-status-b-3de4frjgx8 {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
}

/* Dropdown de inicio de despacho */
.footer__dropdown[b-3de4frjgx8] {
    position: relative;
    display: inline-block;
}

.footer__dropdown:hover .footer__dropdown-menu[b-3de4frjgx8] {
    display: block;
}

.footer__dropdown-menu[b-3de4frjgx8] {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 1000;
    min-width: 180px;
    background: var(--bg-secondary, #fff);
    border: 1px solid var(--border-color, #ddd);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 4px 0;
    margin-bottom: 4px;
}

.footer__dropdown-item[b-3de4frjgx8] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: none;
    color: var(--text-primary, #333);
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    text-align: left;
}

.footer__dropdown-item:hover[b-3de4frjgx8] {
    background: var(--bg-hover, #f0f0f0);
}

.footer__icon-btn--dropdown[b-3de4frjgx8] {
    position: relative;
}

.footer__icon-btn--dropdown[b-3de4frjgx8]::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}
/* /Pages/Home/Components/ShiftControlPanel.razor.rz.scp.css */
/* ShiftControlPanel - anchored popup styling */

.shift-popover-overlay[b-i1pd7un3uu] {
    position: fixed;
    inset: 0;
    z-index: 1049;
    background: transparent;
}

.shift-ctrl-overlay[b-i1pd7un3uu] {
    position: fixed;
    inset: 0;
    z-index: 1049;
}

.shift-ctrl-popover[b-i1pd7un3uu] {
    position: fixed;
    z-index: 1050;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 300px;
    max-width: 380px;
}

.shift-ctrl-content[b-i1pd7un3uu] {
    padding: 8px 12px;
}

.shift-ctrl-header[b-i1pd7un3uu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    background: #017DC0;
    color: #fff;
    margin: -8px -12px 8px -12px;
    border-radius: 4px 4px 0 0;
}

.shift-ctrl-title[b-i1pd7un3uu] {
    font-size: 0.9rem;
    font-weight: 600;
}

.shift-ctrl-close[b-i1pd7un3uu] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 2px;
}

.shift-ctrl-info[b-i1pd7un3uu] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 8px;
    font-size: 0.8rem;
    line-height: 1.3;
}

.shift-ctrl-info__cell[b-i1pd7un3uu] {
    color: #6c757d;
}

.shift-ctrl-info__value[b-i1pd7un3uu] {
    color: #212529;
    font-weight: 500;
}

.shift-ctrl-info__value--mono[b-i1pd7un3uu] {
    font-family: monospace;
    font-size: 0.75rem;
}

.shift-badge[b-i1pd7un3uu] {
    display: inline-block;
    padding: 0 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.shift-badge--open[b-i1pd7un3uu] {
    background: #e0f0fb;
    color: #017DC0;
}

.shift-badge--closed[b-i1pd7un3uu] {
    background: #f1f3f5;
    color: #6c757d;
}

.shift-badge--unknown[b-i1pd7un3uu] {
    background: #fff3cd;
    color: #856404;
}

.shift-ctrl-error[b-i1pd7un3uu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 10px;
    margin-bottom: 8px;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 4px;
    color: #991b1b;
    font-size: 0.78rem;
}

.shift-ctrl-error__text[b-i1pd7un3uu] {
    flex: 1;
}

.shift-ctrl-error__dismiss[b-i1pd7un3uu] {
    background: none;
    border: none;
    color: #991b1b;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 2px;
    opacity: 0.6;
}

.shift-ctrl-error__dismiss:hover[b-i1pd7un3uu] {
    opacity: 1;
}

.shift-ctrl-success[b-i1pd7un3uu] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    margin-bottom: 8px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 4px;
    color: #166534;
    font-size: 0.78rem;
}

.shift-ctrl-success i[b-i1pd7un3uu] {
    font-size: 0.85rem;
}

.shift-ctrl-actions[b-i1pd7un3uu] {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.shift-ctrl-actions[b-i1pd7un3uu]  .k-button {
    flex: 1;
    padding: 4px 8px;
}

.shift-ctrl-log[b-i1pd7un3uu] {
    background: #1e1e2e;
    border-radius: 4px;
    padding: 6px 8px;
    font-family: monospace;
    font-size: 0.7rem;
    margin-top: 10px;
}

.shift-ctrl-log__header[b-i1pd7un3uu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.shift-ctrl-log__title[b-i1pd7un3uu] {
    color: #888;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shift-ctrl-log__entries[b-i1pd7un3uu] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 100px;
    overflow-y: auto;
}

.shift-ctrl-log__entry[b-i1pd7un3uu] {
    color: #cdd6f4;
}

.shift-ctrl-log__entry.log-ok[b-i1pd7un3uu] {
    color: #a6e3a1;
}

.shift-ctrl-log__entry.log-error[b-i1pd7un3uu] {
    color: #f38ba8;
}

.shift-ctrl-log__entry.log-info[b-i1pd7un3uu] {
    color: #89dceb;
}
.shift-ctrl-marked-banner[b-i1pd7un3uu] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fff7e0;
    border: 1px solid #f5c518;
    border-radius: 6px;
    padding: 8px 10px;
    margin: 6px 0;
}

.shift-ctrl-marked-banner i[b-i1pd7un3uu] {
    color: #b67d00;
    margin-top: 2px;
}

.shift-ctrl-marked-banner__title[b-i1pd7un3uu] {
    font-weight: 600;
    color: #5a4500;
    font-size: 0.85rem;
}

.shift-ctrl-marked-banner__reason[b-i1pd7un3uu] {
    color: #5a4500;
    font-size: 0.8rem;
    margin-top: 2px;
}

.shift-ctrl-empty[b-i1pd7un3uu] {
    color: #6c757d;
    font-size: 0.85rem;
    padding: 6px 0;
    text-align: center;
}
/* /Pages/Home/Components/TankCard.razor.rz.scp.css */
:root[b-7o10t7hm4p] {
    --dark-text: #333333;
    --light-text: #ffffff;
}

.cards-container[b-7o10t7hm4p] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0.25rem 1.25rem 0.25rem 1.25rem;
}

.tank-card[b-7o10t7hm4p] {
    display: flex;
    flex-direction: column;
    width: 22rem;
    flex-shrink: 0;
    border: 2px solid transparent;
    border-radius: 1rem;
    position: relative;
    z-index: 0;
    transition: border-color 0.2s ease;
    cursor: pointer;
    align-self: flex-start;
}

.tank-card--selected[b-7o10t7hm4p] {
    border-color: #017DC0 !important;
}

@media (max-width: 420px) {
    .tank-card[b-7o10t7hm4p] {
        width: 100%;
        max-width: 22rem;
    }
}

.tank-card.tank-card--modal-open[b-7o10t7hm4p] {
    z-index: 9999 !important;
}

.tank-card__content[b-7o10t7hm4p] {
    box-shadow: 0px 8px 24px rgba(0,0,0,0.15); /* Sombra más fuerte y profunda */
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    background: white;
}

.tank-card--unavailable[b-7o10t7hm4p] {
    opacity: 0.65;
    border: 1px dashed #a0aec0;
    background-color: #f7fafc;
}

.tank-card--unavailable .tank-card__progress[b-7o10t7hm4p],
.tank-card--unavailable .tank-card__toggle-button[b-7o10t7hm4p],
.tank-card--unavailable .tank-card__details[b-7o10t7hm4p],
.tank-card--inactive .tank-card__toggle-button[b-7o10t7hm4p],
.tank-card--inactive .tank-card__details[b-7o10t7hm4p] {
    display: none;
}

.tank-card__unavailable-reason[b-7o10t7hm4p] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #4a5568;
    min-height: 150px;
}

.tank-card__unavailable-reason .fa[b-7o10t7hm4p] {
    margin-right: 0.5rem;
}

.tank-card__title-container[b-7o10t7hm4p] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tank-card__status[b-7o10t7hm4p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 1rem;
}

.tank-card__status-dot[b-7o10t7hm4p] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .tank-card__status-dot:hover[b-7o10t7hm4p] {
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(0,0,0,0.2);
    }

.tank-card__status-dot--online[b-7o10t7hm4p] {
    background-color: #28a745;
}

.tank-card__status-dot--offline[b-7o10t7hm4p] {
    background-color: #dc3545;
}

.tank-card__progress[b-7o10t7hm4p] {
    text-align: center;
    margin: 10px 0;
}

.tank-card__circle[b-7o10t7hm4p] {
    position: relative;
    top: 6.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    border: solid 2px;
    border-color: #e3e3e3;
    background: white;
}


/* ── GAUGE CLIP ── */
.tank-gauge-clip[b-7o10t7hm4p] {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at 50% 28%, #ffffff 0%, #fbfdff 58%, #f3f7fb 100%);
    isolation: isolate;
}

.tank-gauge-clip[b-7o10t7hm4p]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 18%, rgba(255,255,255,0.28), transparent 32%),
        linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 2;
}

.tank-gauge-clip[b-7o10t7hm4p]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow:
        inset 0 4px 8px rgba(255,255,255,0.08),
        inset 0 -10px 18px rgba(15,23,42,0.05);
    pointer-events: none;
    z-index: 2;
}

.tank-wave-canvas[b-7o10t7hm4p] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.tank-card__fill-text[b-7o10t7hm4p] {
    font-size: 1.4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    z-index: 3;
    pointer-events: none;
    height: 1.4rem;
}

.tank-card__fill-text--dark[b-7o10t7hm4p] {
    color: #222;
    /* Contorno blanco: visible sobre cualquier fondo oscuro o de color */
    text-shadow:
        -1px -1px 0 rgba(255,255,255,0.85),
         1px -1px 0 rgba(255,255,255,0.85),
        -1px  1px 0 rgba(255,255,255,0.85),
         1px  1px 0 rgba(255,255,255,0.85),
         0    0   3px rgba(255,255,255,0.6);
}

.tank-card__fill-text--light[b-7o10t7hm4p] {
    color: rgba(255, 255, 255, 0.95);
    /* Contorno negro: visible sobre fondo claro, amarillo, naranja, etc. */
    text-shadow:
        -1px -1px 0 rgba(0,0,0,0.75),
         1px -1px 0 rgba(0,0,0,0.75),
        -1px  1px 0 rgba(0,0,0,0.75),
         1px  1px 0 rgba(0,0,0,0.75),
         0    0   3px rgba(0,0,0,0.5);
}

.tank-card__water-text[b-7o10t7hm4p] {
    font-size: 0.52rem;
    position: absolute;
    top: 84%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: #000000 !important;
    font-weight: 700;
    opacity: 1;
    text-shadow: none;
}

.tank-card__drop[b-7o10t7hm4p] {
    position: absolute;
    height: 1.7rem;
    top: 79%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    filter: saturate(1.35) hue-rotate(-8deg) brightness(1.03);
}

.tank-card__drop--dry[b-7o10t7hm4p] {
    filter: grayscale(1) brightness(1.4);
    opacity: 0.5;
}

.tank-card__name[b-7o10t7hm4p] {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    color: var(--gray);
}

.tank-card__toggle-button[b-7o10t7hm4p] {
    margin: 0 1rem;
}

.tank-card__details[b-7o10t7hm4p] {
    display: none;
    margin-top: 1rem;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.5s ease-out, opacity 0.5s ease-out;
}

    .tank-card__details.show[b-7o10t7hm4p] {
        display: flex;
        flex-direction: column;
        animation: slide-down-b-7o10t7hm4p 0.5s forwards;
        opacity: 1;
    }

    .tank-card__details.hide[b-7o10t7hm4p] {
        display: none;
        animation: slide-up-b-7o10t7hm4p 0.5s forwards;
        height: 0;
        opacity: 0;
    }

.tank-card__detail-item[b-7o10t7hm4p] {
    display: flex;
    flex-direction: row;
    height: 3rem;
    margin-left: 1.5rem;
}

.tank-card__icon[b-7o10t7hm4p] {
    width: 2.2rem;
    height: 2.2rem;
    color: #000;
    background: #EEEDF0;
    border-radius: 9px;
    line-height: 1.5;
    padding-left: 0.5rem;
}

.tank-card__detail-title[b-7o10t7hm4p] {
    font-size: 1rem;
    color: #6c757d;
    margin-left: 1.2rem;
}

.tank-card__detail-value[b-7o10t7hm4p] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 1.2rem;
}

.tank-card__separator[b-7o10t7hm4p] {
    align-self: center;
    border-bottom: solid 1px;
    border-color: #D0D0D0;
    width: 17rem;
    margin-bottom: 0.5rem;
}

 @keyframes swell-b-7o10t7hm4p {
    0%, 100% {
        background-position: right bottom 10px;
    }

    50% {
        background-position: right bottom 0;
    }
}

 @keyframes slide-down-b-7o10t7hm4p {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: 100%;
        opacity: 1;
    }
}

 @keyframes slide-up-b-7o10t7hm4p {
    from {
        height: 100%;
        opacity: 1;
    }

    to {
        height: 0;
        opacity: 0;
    }
}


@media (max-width: 805px) {
    .cards-container[b-7o10t7hm4p] {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 5rem;
    }
}

/* Reconciliation Badge */
.tank-card__reconciliation-badge[b-7o10t7hm4p] {
    position: absolute;
    top: 260px;
    right: 15px;
    z-index: 5;
}

.tank-card__reconciliation-btn[b-7o10t7hm4p] {
    background: white;
    border: none;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s;
}

.tank-card__reconciliation-btn i[b-7o10t7hm4p] {
    font-size: 0.82rem;
    color: #495057;
}

.tank-card__reconciliation-btn:hover[b-7o10t7hm4p] {
    transform: scale(1.1);
    background: #f8f9fa;
    color: #0d6efd;
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

.tank-card__reconciliation-btn--inactive[b-7o10t7hm4p] {
    opacity: 0.5;
    cursor: default;
}

/* Modal Simple */
.tank-card__modal-overlay[b-7o10t7hm4p] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.tank-card__modal-content[b-7o10t7hm4p] {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    animation: modalAppear-b-7o10t7hm4p 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

@keyframes modalAppear-b-7o10t7hm4p {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ========================= INACTIVE TANK CARD ========================= */
.tank-card--inactive[b-7o10t7hm4p] {
    border: 1px dashed #b8d4e8;
    overflow: hidden;
}

.tank-card__content--inactive[b-7o10t7hm4p] {
    box-shadow: 0px 8px 24px rgba(0,0,0,0.08);
    border-radius: 1rem;
    padding: 0.6rem 1.5rem 1rem;
    background: #f8f9fb;
}

/* Demo mini-card preview */
.tank-card__demo-preview[b-7o10t7hm4p] {
    display: flex;
    justify-content: center;
    padding: 0.8rem 0 0.4rem;
}

.tank-card__demo-minicard[b-7o10t7hm4p] {
    width: 140px;
    background: #fff;
    border: 1px solid #d0e3f0;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(1, 125, 192, 0.12);
    padding: 6px 8px 4px;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.85;
    position: relative;
    overflow: hidden;
}

.tank-card__demo-minicard:hover[b-7o10t7hm4p] {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(1, 125, 192, 0.22);
    opacity: 1;
}

.tank-card__demo-mini-header[b-7o10t7hm4p] {
    text-align: center;
    margin-bottom: 4px;
}

.tank-card__demo-mini-name[b-7o10t7hm4p] {
    display: block;
    font-size: 0.5rem;
    font-weight: 800;
    color: #017DC0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tank-card__demo-mini-product[b-7o10t7hm4p] {
    display: block;
    font-size: 0.4rem;
    color: #7aaed0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tank-card__demo-mini-gauge[b-7o10t7hm4p] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid #b8d4e8;
    background: #f4f8fb;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.tank-card__demo-mini-wave[b-7o10t7hm4p] {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 60%;
    background: linear-gradient(180deg, rgba(1, 125, 192, 0.3) 0%, rgba(1, 125, 192, 0.5) 100%);
    border-radius: 42% 58% 40% 60% / 50% 50% 50% 50%;
    animation: demoMiniWave-b-7o10t7hm4p 3s ease-in-out infinite;
}

.tank-card__demo-mini-wave[b-7o10t7hm4p]::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 10%;
    width: 80%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 125, 192, 0.15) 0%, rgba(1, 125, 192, 0.35) 100%);
    border-radius: 55% 45% 50% 50% / 50% 50% 50% 50%;
    animation: demoMiniWave2-b-7o10t7hm4p 2.5s ease-in-out infinite;
}

.tank-card__demo-mini-percent[b-7o10t7hm4p] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #017DC0;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(255,255,255,0.9);
}

/* Disabled label */
.tank-card__demo-mini-disabled[b-7o10t7hm4p] {
    text-align: center;
    font-size: 0.4rem;
    font-weight: 600;
    color: #d4726a;
    margin-top: 3px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.tank-card__demo-mini-disabled i[b-7o10t7hm4p] {
    font-size: 0.35rem;
    margin-right: 1px;
}

/* Red diagonal lines overlay */
.tank-card__demo-mini-lines[b-7o10t7hm4p] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 6px,
        rgba(220, 100, 90, 0.08) 6px,
        rgba(220, 100, 90, 0.08) 7px
    );
    border-radius: 6px;
}

@keyframes demoMiniWave-b-7o10t7hm4p {
    0%, 100% { transform: translateX(0) rotate(0deg); height: 60%; }
    30% { transform: translateX(4px) rotate(2deg); height: 55%; }
    70% { transform: translateX(-3px) rotate(-1deg); height: 68%; }
}

@keyframes demoMiniWave2-b-7o10t7hm4p {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(-4px) rotate(-2deg); }
}

.tank-card__inactive-info[b-7o10t7hm4p] {
    text-align: center;
    padding: 0.3rem 0.8rem 0.6rem;
}

.tank-card__inactive-message[b-7o10t7hm4p] {
    font-size: 0.7rem;
    color: #5a8db5;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

/* Animated ticker */
.tank-card__inactive-ticker-wrapper[b-7o10t7hm4p] {
    overflow: hidden;
    width: 100%;
    margin-bottom: 0.4rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tank-card__inactive-ticker[b-7o10t7hm4p] {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: tickerScroll-b-7o10t7hm4p 12s linear infinite;
    font-size: 0.62rem;
    color: #3d8ab8;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.tank-card__inactive-dot[b-7o10t7hm4p] {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #8ab4d4;
    flex-shrink: 0;
    display: inline-block;
}

@keyframes tickerScroll-b-7o10t7hm4p {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tank-card__inactive-hint[b-7o10t7hm4p] {
    font-size: 0.6rem;
    color: #7aaed0;
    font-style: italic;
}

@keyframes mockAnimate-b-7o10t7hm4p {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Botón de simulación — solo visible en Development */
.tank-card__debug-btn[b-7o10t7hm4p] {
    position: absolute;
    bottom: 0.4rem;
    right: 2.8rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px dashed #6366f1;
    border-radius: 50%;
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6366f1;
    font-size: 0.7rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.tank-card__debug-btn:hover[b-7o10t7hm4p] {
    opacity: 1;
}
/* /Pages/Home/Components/TankLoadingCarousel.razor.rz.scp.css */
.tank-loading-container[b-hq1qafcy2d] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 600px;
    width: 100%;
    padding: 3rem 2rem;
    gap: 3rem;
    overflow: hidden;
    background: rgba(243, 243, 243, 0.5);
}

.tank-carousel[b-hq1qafcy2d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.carousel-content[b-hq1qafcy2d] {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 1rem;
    overflow: hidden;
    justify-content: flex-start;
}

.tank-card-wrapper[b-hq1qafcy2d] {
    position: absolute;
    top: 0;
    opacity: 0;
    animation: cardRowCycle-b-hq1qafcy2d 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    width: 22rem;
    flex-shrink: 0;
    pointer-events: none;
    filter: blur(0);
}

.tank-card-wrapper:nth-child(1)[b-hq1qafcy2d] {
    left: 0;
    animation-delay: 0s;
}
.tank-card-wrapper:nth-child(2)[b-hq1qafcy2d] {
    left: calc(22rem + 1.5rem);
    animation-delay: 0.3s;
}
.tank-card-wrapper:nth-child(3)[b-hq1qafcy2d] {
    left: calc((22rem + 1.5rem) * 2);
    animation-delay: 0.6s;
}
.tank-card-wrapper:nth-child(4)[b-hq1qafcy2d] {
    left: calc((22rem + 1.5rem) * 3);
    animation-delay: 0.9s;
}

.tank-card-wrapper.active[b-hq1qafcy2d] {
    opacity: 1;
    transform: scale(1) translate(0, 0);
    filter: blur(0);
}

/* Forzar que las cards ocupen el ancho del wrapper */
.tank-card-wrapper[b-hq1qafcy2d]  .cards-container {
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 22rem !important;
}

.tank-card-wrapper[b-hq1qafcy2d]  .tank-card {
    width: 22rem !important;
    flex-shrink: 0 !important;
    pointer-events: none;
    user-select: none;
}

.tank-card-wrapper[b-hq1qafcy2d]  button,
.tank-card-wrapper[b-hq1qafcy2d]  a {
    pointer-events: none !important;
    cursor: default !important;
}

.loading-text[b-hq1qafcy2d] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.loading-text-animated[b-hq1qafcy2d] {
    position: relative;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(to left, #1a4096, #1a4096, rgba(255, 255, 255, 0.7), #1a4096, #1a4096);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: light-effect-b-hq1qafcy2d 2s linear infinite;
    background-size: 200% 100%;
}

@keyframes light-effect-b-hq1qafcy2d {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Desktop animation - horizontal row that cycles continuously */
@keyframes cardRowCycle-b-hq1qafcy2d {
    0% {
        opacity: 0;
        transform: scale(0.9) translateX(100px) translateY(-20px);
        filter: blur(3px);
    }
    15% {
        opacity: 0.8;
        transform: scale(0.95) translateX(20px) translateY(-5px);
        filter: blur(1px);
    }
    25% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        filter: blur(0);
    }
    70% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        filter: blur(0);
    }
    85% {
        opacity: 0.5;
        transform: scale(0.95) translateX(-20px) translateY(10px);
        filter: blur(2px);
    }
    100% {
        opacity: 0;
        transform: scale(0.9) translateX(-100px) translateY(20px);
        filter: blur(3px);
    }
}

/* Mobile animation - vertical stack that cycles through tanks */
@keyframes cardStackInMobile-b-hq1qafcy2d {
    0% {
        opacity: 0;
        transform: scale(0.85) translate(100%, -50px);
        filter: blur(4px);
    }
    5% {
        opacity: 0.3;
        transform: scale(0.9) translate(50%, -30px);
        filter: blur(2px);
    }
    10% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        filter: blur(0);
    }
    20% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        filter: blur(0);
    }
    23% {
        opacity: 0.7;
        transform: scale(0.95) translate(-10px, 5px);
        filter: blur(1px);
    }
    25% {
        opacity: 0;
        transform: scale(0.9) translate(-50px, 20px);
        filter: blur(4px);
    }
    100% {
        opacity: 0;
        transform: scale(0.85) translate(-100%, 50px);
        filter: blur(4px);
    }
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .tank-card-wrapper:nth-child(6)[b-hq1qafcy2d] {
        display: none;
    }
}

@media (max-width: 1200px) {
    .tank-card-wrapper:nth-child(5)[b-hq1qafcy2d] {
        display: none;
    }
}

@media (max-width: 992px) {
    .tank-card-wrapper:nth-child(4)[b-hq1qafcy2d] {
        display: none;
    }
}

@media (max-width: 768px) {
    .tank-loading-container[b-hq1qafcy2d] {
        min-height: 450px;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .carousel-content[b-hq1qafcy2d] {
        min-height: 350px;
        display: block;
    }

    .tank-card-wrapper[b-hq1qafcy2d] {
        max-width: 100%;
        position: absolute;
        top: 0;
        left: 0 !important;
        display: block !important;
        animation-name: cardStackInMobile-b-hq1qafcy2d !important;
        animation-duration: 8s !important;
        animation-timing-function: ease-in-out !important;
        animation-iteration-count: infinite !important;
        animation-fill-mode: both !important;
    }

    .tank-card-wrapper[b-hq1qafcy2d]  .cards-container {
        width: 100% !important;
    }

    .tank-card-wrapper[b-hq1qafcy2d]  .tank-card {
        width: 100% !important;
    }

    .tank-card-wrapper:nth-child(1)[b-hq1qafcy2d] {
        animation-delay: 0s !important;
    }
    .tank-card-wrapper:nth-child(2)[b-hq1qafcy2d] {
        animation-delay: 2s !important;
    }
    .tank-card-wrapper:nth-child(3)[b-hq1qafcy2d] {
        animation-delay: 4s !important;
    }
    .tank-card-wrapper:nth-child(4)[b-hq1qafcy2d] {
        animation-delay: 6s !important;
    }

    .loading-text[b-hq1qafcy2d] {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .tank-loading-container[b-hq1qafcy2d] {
        padding: 1.5rem 0.5rem;
        gap: 1.5rem;
    }

    .carousel-content[b-hq1qafcy2d] {
        min-height: 320px;
        padding: 0.5rem;
    }

    .loading-text[b-hq1qafcy2d] {
        font-size: 1.2rem;
    }
}
/* /Pages/Home/Dispensing.razor.rz.scp.css */
/* /Pages/Home/Events.razor.rz.scp.css */
/* /Pages/Home/Groups.razor.rz.scp.css */
/* /Pages/Home/Index.razor.rz.scp.css */
.welcome-modal-backdrop[b-rpyyqtsdim] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    padding: 15px;
}

.welcome-modal-container[b-rpyyqtsdim] {
    background-color: #222;
    border-radius: 5px;
    width: 500px;
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
    color: #eee;
}

.welcome-modal-header[b-rpyyqtsdim] {
    background-color: #0077be;
    padding: 15px 20px;
    text-align: center;
}

    .welcome-modal-header h2[b-rpyyqtsdim] {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 500;
        color: white;
    }

.welcome-modal-content[b-rpyyqtsdim] {
    padding: 20px;
    overflow-y: auto;
    background-color: #333;
}

    .welcome-modal-content h3[b-rpyyqtsdim] {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.15rem;
        color: white;
        font-weight: 500;
    }

    .welcome-modal-content p[b-rpyyqtsdim] {
        color: #ccc;
        line-height: 1.5;
    }

.welcome-features[b-rpyyqtsdim] {
    margin: 20px 0;
}

    .welcome-features h4[b-rpyyqtsdim] {
        margin-bottom: 15px;
        font-size: 1.1rem;
        color: white;
        font-weight: 500;
    }

.features-list[b-rpyyqtsdim] {
    padding: 0;
    margin: 0;
}

.feature-item[b-rpyyqtsdim] {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-left: 3px solid #0077be;
    background-color: #2a2a2a;
    margin-bottom: 5px;
}

.feature-icon[b-rpyyqtsdim] {
    font-size: 1.2rem;
    margin-right: 10px;
    width: 24px;
    text-align: center;
}

.feature-text[b-rpyyqtsdim] {
    font-size: 0.95rem;
    color: #ddd;
}

.security-note[b-rpyyqtsdim] {
    margin-top: 20px;
    padding: 15px;
    background-color: #2a2a2a;
    border-left: 3px solid #0077be;
    font-size: 0.9rem;
    color: #aaa;
}

.welcome-modal-footer[b-rpyyqtsdim] {
    padding: 15px 20px;
    background-color: #2a2a2a;
    display: flex;
    justify-content: space-between;  
    align-items: center;
}
 
.culture-selector[b-rpyyqtsdim] {
    flex: 1;
    max-width: 200px;
}
 
    .culture-selector :deep(select)[b-rpyyqtsdim],
    .culture-selector :deep(.k-dropdown)[b-rpyyqtsdim] {
        background-color: #333;
        color: #ddd;
        border-color: #444;
    }

.primary-button[b-rpyyqtsdim] {
    background-color: #0077be;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 10px 40px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .primary-button:hover[b-rpyyqtsdim] {
        background-color: #0088d1;
    }

.welcome-modal-copyright[b-rpyyqtsdim] {
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    background-color: #222;
}
 
@media (max-width: 768px) {
    .welcome-modal-container[b-rpyyqtsdim] {
        width: 100%;
    }

    .welcome-modal-header[b-rpyyqtsdim] {
        padding: 12px 16px;
    }

    .welcome-modal-content[b-rpyyqtsdim] {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .welcome-modal-header h2[b-rpyyqtsdim] {
        font-size: 1.2rem;
    }

    .welcome-modal-content[b-rpyyqtsdim] {
        padding: 12px;
    }

    .welcome-features h4[b-rpyyqtsdim] {
        font-size: 1rem;
    }

    .feature-item[b-rpyyqtsdim] {
        padding: 6px 8px;
    }

    .welcome-modal-footer[b-rpyyqtsdim] {
        padding: 12px;
        flex-direction: column;  
        gap: 10px;  
    }

    .culture-selector[b-rpyyqtsdim] {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .primary-button[b-rpyyqtsdim] {
        width: 100%;
        padding: 10px 20px;
    }
}

 
@media (max-height: 500px) {
    .welcome-modal-container[b-rpyyqtsdim] {
        max-height: 95vh;
    }

    .welcome-modal-content[b-rpyyqtsdim] {
        max-height: 50vh;  
    }

    .feature-item[b-rpyyqtsdim] {
        margin-bottom: 3px;
        padding: 4px 8px;
    }
}
/* /Pages/Home/Tanks.razor.rz.scp.css */
.my-active-link[b-btldoa8gtj] {
    background-color: #262626;
}
/* /Pages/Home/Views/DispensingView.razor.rz.scp.css */
.dispensing-header-actions[b-9ks9oxj906] {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-bottom: 0.8rem;
    padding: 0 1rem;
    position: relative;
}

.search-filter-container.analytics-style[b-9ks9oxj906] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    width: auto;
    max-width: none;
    margin-left: auto;
    position: relative;
    flex: 0 0 auto;
}

.device-search-banner[b-9ks9oxj906] {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 2.7rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid #dbe4ef;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.device-search-banner__copy[b-9ks9oxj906] {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.device-search-banner__copy strong[b-9ks9oxj906] {
    color: #0f172a;
    font-size: 0.76rem;
    font-weight: 800;
}

.device-search-banner__copy span[b-9ks9oxj906] {
    color: #475569;
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.device-search-banner__close[b-9ks9oxj906] {
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid rgba(1, 125, 192, 0.18);
    background: #ffffff;
    color: #017DC0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.device-search-toolbar[b-9ks9oxj906] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 0 0 auto;
}

.device-search-pill[b-9ks9oxj906] {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(1, 125, 192, 0.14);
    background: #f8fbff;
    color: #305066;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.device-search-toolbar__clear[b-9ks9oxj906] {
    min-height: 2rem;
    padding: 0.38rem 0.75rem;
    border: 1px solid rgba(1, 125, 192, 0.18);
    background: #ffffff;
    color: #017DC0;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.device-search-toolbar__divider[b-9ks9oxj906] {
    width: 1px;
    height: 1.9rem;
    background: #0f172a;
    opacity: 0.25;
    margin-left: 0.2rem;
}

.desktop-only[b-9ks9oxj906] {
    display: block;
}

.mobile-only[b-9ks9oxj906] {
    display: none;
}

.device-selector-shell[b-9ks9oxj906] {
    flex: 1 1 auto;
    width: auto;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.device-selector-help-button[b-9ks9oxj906] {
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(1, 125, 192, 0.18);
    background: #ffffff;
    color: #017DC0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.device-selector-help-button:hover[b-9ks9oxj906] {
    border-color: rgba(1, 125, 192, 0.38);
    background: #f8fbff;
    box-shadow: 0 14px 28px rgba(1, 125, 192, 0.12);
}

.device-refresh-button[b-9ks9oxj906] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    border: 1px solid #c7d6e5;
    border-radius: 0.35rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    color: #017DC0;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.15s ease;
}

.device-refresh-button:hover:not(:disabled)[b-9ks9oxj906] {
    border-color: rgba(1, 125, 192, 0.45);
    box-shadow: 0 14px 28px rgba(1, 125, 192, 0.12);
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fd 100%);
}

.device-refresh-button:disabled[b-9ks9oxj906] {
    opacity: 0.6;
    cursor: not-allowed;
}

.device-selector-trigger[b-9ks9oxj906] {
    width: 100%;
    min-height: 2.35rem;
    border-radius: 0;
    border: 1px solid #c7d6e5;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0.7rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.device-selector-trigger:hover[b-9ks9oxj906] {
    border-color: rgba(1, 125, 192, 0.45);
    box-shadow: 0 14px 28px rgba(1, 125, 192, 0.12);
}

.device-selector-trigger__content[b-9ks9oxj906] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.device-selector-trigger__content i[b-9ks9oxj906] {
    color: #017DC0;
    font-size: 0.85rem;
}

.device-selector-trigger__text[b-9ks9oxj906] {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.86rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.device-selector-trigger__meta[b-9ks9oxj906] {
    flex-shrink: 0;
    color: #64748b;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.device-selector-panel[b-9ks9oxj906] {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 40;
    width: min(20rem, 92vw);
    padding: 0.55rem;
    border-radius: 0;
    border: 1px solid #dbe4ef;
    background: #ffffff;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
    box-sizing: border-box;
}

.device-selector-panel__header[b-9ks9oxj906] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.device-selector-panel__title[b-9ks9oxj906] {
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.device-selector-panel__close[b-9ks9oxj906] {
    width: 1.55rem;
    height: 1.55rem;
    border: 1px solid #dbe4ef;
    border-radius: 0;
    background: #ffffff;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.device-selector-search[b-9ks9oxj906] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.2rem;
    padding: 0.02rem 0.55rem;
    border-radius: 0;
    border: 1px solid #dbe4ef;
    background: #f8fafc;
    box-sizing: border-box;
}

.device-selector-search i[b-9ks9oxj906] {
    color: #017DC0;
    font-size: 0.82rem;
}

.device-selector-search input[b-9ks9oxj906] {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-size: 0.82rem;
}

.device-selector-search input[b-9ks9oxj906]::placeholder {
    color: #64748b;
}

.device-selector-clear[b-9ks9oxj906] {
    width: 1.55rem;
    height: 1.55rem;
    border: 0;
    border-radius: 0;
    background: rgba(148, 163, 184, 0.14);
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.device-selector-results[b-9ks9oxj906] {
    display: grid;
    gap: 0.3rem;
    max-height: 18rem;
    margin-top: 0.45rem;
    overflow: auto;
    padding-right: 0.1rem;
    min-width: 0;
    box-sizing: border-box;
}

.device-selector-option[b-9ks9oxj906] {
    width: 100%;
    max-width: 100%;
    border: 1px solid #dbe4ef;
    border-radius: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    padding: 0.45rem 0.55rem;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.device-selector-option:hover[b-9ks9oxj906] {
    border-color: rgba(1, 125, 192, 0.32);
    background: #f8fbff;
}

.device-selector-option.is-selected[b-9ks9oxj906] {
    border-color: rgba(1, 125, 192, 0.46);
    background: color-mix(in srgb, #017DC0 10%, #ffffff);
    box-shadow: inset 0 0 0 1px rgba(1, 125, 192, 0.1);
}

.device-selector-item[b-9ks9oxj906] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.device-selector-item i[b-9ks9oxj906] {
    color: #017DC0;
    font-size: 0.82rem;
}

.device-selector-item .device-info[b-9ks9oxj906] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.device-selector-item strong[b-9ks9oxj906] {
    color: #0f172a;
    font-size: 0.83rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.device-selector-item small[b-9ks9oxj906] {
    color: #64748b;
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.device-selector-check[b-9ks9oxj906] {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 0;
    background: #017DC0;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.device-selector-empty[b-9ks9oxj906] {
    display: grid;
    gap: 0.2rem;
    padding: 0.7rem;
    border-radius: 0;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    background: #f8fafc;
    box-sizing: border-box;
}

.device-selector-mobile-button[b-9ks9oxj906] {
    width: 2.55rem;
    height: 2.55rem;
    border: 1px solid rgba(1, 125, 192, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: #017DC0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.device-selector-mobile-backdrop[b-9ks9oxj906] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.32);
    z-index: 60;
}

.device-selector-mobile-drawer[b-9ks9oxj906] {
    position: fixed;
    top: 20px;
    right: 0.35rem;
    width: min(20rem, calc(100vw - 0.7rem));
    height: calc(100dvh - 20px);
    z-index: 61;
    background: #ffffff;
    box-shadow: -18px 0 38px rgba(15, 23, 42, 0.2);
    display: flex;
    flex-direction: column;
    padding: 0.7rem 0.65rem 0.7rem;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 0;
}

.device-selector-mobile-header[b-9ks9oxj906] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
}

.device-selector-mobile-eyebrow[b-9ks9oxj906] {
    display: block;
    color: #64748b;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.1rem;
}

.device-selector-mobile-header strong[b-9ks9oxj906] {
    color: #0f172a;
    font-size: 0.9rem;
}

.device-selector-mobile-close[b-9ks9oxj906] {
    width: 1.9rem;
    height: 1.9rem;
    border: 0;
    border-radius: 0;
    background: rgba(148, 163, 184, 0.16);
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.device-selector-search--mobile[b-9ks9oxj906] {
    margin-bottom: 0.45rem;
}

.device-selector-results--mobile[b-9ks9oxj906] {
    flex: 1 1 auto;
    max-height: none;
    padding-bottom: 0.5rem;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.device-search-status[b-9ks9oxj906] {
    display: none;
}

.device-search-status__count[b-9ks9oxj906] {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(1, 125, 192, 0.14);
    background: #f8fbff;
    color: #305066;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}

.device-search-feedback__eyebrow[b-9ks9oxj906] {
    display: none;
}

.device-search-status__count strong[b-9ks9oxj906] {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.device-search-status__icon[b-9ks9oxj906],
.device-search-status .device-selector-help-button[b-9ks9oxj906],
.device-search-help .device-selector-help-button[b-9ks9oxj906] {
    display: none;
}

.device-search-status__actions[b-9ks9oxj906] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.device-search-status__icon[b-9ks9oxj906],
.device-search-status__clear[b-9ks9oxj906],
.device-search-help__close[b-9ks9oxj906] {
    min-height: 2rem;
    border: 1px solid rgba(1, 125, 192, 0.18);
    background: #ffffff;
    color: #017DC0;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.device-search-status__icon[b-9ks9oxj906],
.device-search-help__close[b-9ks9oxj906] {
    width: 2rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.device-search-status__clear[b-9ks9oxj906] {
    padding: 0.42rem 0.85rem;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}

.device-search-status__icon:hover[b-9ks9oxj906],
.device-search-status__clear:hover[b-9ks9oxj906],
.device-search-help__close:hover[b-9ks9oxj906] {
    border-color: rgba(1, 125, 192, 0.34);
    background: #f8fbff;
    box-shadow: 0 10px 18px rgba(1, 125, 192, 0.12);
}

.device-search-help[b-9ks9oxj906] {
    display: none;
}

.device-search-help__body[b-9ks9oxj906] {
    display: grid;
    gap: 0.2rem;
}

.device-search-help__body strong[b-9ks9oxj906] {
    color: #0f172a;
    font-size: 0.8rem;
}

.device-search-help__body span[b-9ks9oxj906] {
    color: #475569;
    font-size: 0.76rem;
    line-height: 1.4;
}


@media (max-width: 640px) {
    .dispensing-header-actions[b-9ks9oxj906] {
        justify-content: flex-end;
        padding: 0 0.35rem;
    }

    .search-filter-container.analytics-style[b-9ks9oxj906] {
        width: auto;
        max-width: none;
    }

    .desktop-only[b-9ks9oxj906] {
        display: none;
    }

    .mobile-only[b-9ks9oxj906] {
        display: inline-flex;
    }

    .device-selector-help-button.mobile-only[b-9ks9oxj906] {
        width: 2.55rem;
        height: 2.55rem;
        border-radius: 999px;
    }

    .device-search-status[b-9ks9oxj906] {
        display: flex;
        align-items: center;
        margin: 0 0.35rem 0.7rem;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.55rem;
    }

    .device-search-status__actions[b-9ks9oxj906] {
        margin-left: auto;
    }

    .device-search-help[b-9ks9oxj906] {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.75rem;
        margin: 0 0.35rem 0.8rem;
        padding: 0.7rem 0.75rem;
        border: 1px solid rgba(1, 125, 192, 0.14);
        background: #ffffff;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    }
}

.atom-preset-window[b-9ks9oxj906]  .k-window-content {
    padding: 0;
    overflow: hidden;
    display: flex;
}

.atom-preset-window[b-9ks9oxj906]  .k-window-content > * {
    flex: 1 1 auto;
    min-height: 0;
}

.atom-preset-modal-window[b-9ks9oxj906]  .k-window-titlebar {
    background: #fff;
    color: #549fdd;
    border-bottom: 1px solid #e0e8f0;
}

.atom-preset-modal-window[b-9ks9oxj906]  .k-window-title {
    color: #549fdd;
    font-weight: 600;
    font-size: 0.9rem;
}

.atom-preset-modal-window[b-9ks9oxj906]  .k-window-actions .k-button {
    background: #e8f4fd;
    color: #549fdd;
    border: none;
    border-radius: 50%;
}

.atom-preset-modal-window[b-9ks9oxj906]  .k-window-actions .k-button:hover {
    background: #549fdd;
    color: #fff;
}

@media (max-width: 768px) {
    .atom-preset-modal-window[b-9ks9oxj906]  .k-window {
        height: min(60dvh, 510px) !important;
        max-height: 60dvh !important;
        align-self: flex-end;
        margin-bottom: 0;
    }

    .atom-preset-modal-window[b-9ks9oxj906]  .k-window-content {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .atom-preset-modal-window.keyboard-open[b-9ks9oxj906]  .k-window {
        height: 45dvh !important;
        max-height: 45dvh !important;
    }
}

.preset-status-window[b-9ks9oxj906]  .k-window-content {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.preset-status-window[b-9ks9oxj906]  .k-window-content > * {
    min-height: 0;
}

.preset-status-window__content[b-9ks9oxj906] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 0.75rem;
}

.preset-status-window__footer[b-9ks9oxj906] {
    display: flex;
    justify-content: flex-end;
    padding: 0.7rem 0.85rem 0.85rem;
    border-top: 1px solid #dbe4ef;
    background: #fff;
}

.preset-status-shell[b-9ks9oxj906] {
    display: grid;
    gap: 0.75rem;
}

.preset-status-detail__eyebrow[b-9ks9oxj906] {
    display: block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 700;
    color: #64748b;
}

.preset-status-badge[b-9ks9oxj906] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.36rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
    background: color-mix(in srgb, var(--status-color, #64748b) 10%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--status-color, #64748b) 45%, #d1d5db);
    color: #0f172a;
    font-size: 0.8rem;
}

.preset-status-strip[b-9ks9oxj906] {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.85rem;
    padding: 0.25rem 0.1rem 0.45rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.preset-status-strip[b-9ks9oxj906]::-webkit-scrollbar {
    height: 6px;
}

.preset-status-strip[b-9ks9oxj906]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.preset-status-strip[b-9ks9oxj906]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.preset-status-chip[b-9ks9oxj906] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    flex: 1 1 5rem;
    min-height: 5rem;
    padding: 0.8rem 0.6rem;
    border-radius: 14px;
    border: 1px solid #dbe4ef;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.preset-status-chip:hover[b-9ks9oxj906],
.preset-status-chip.is-selected[b-9ks9oxj906] {
    border-color: color-mix(in srgb, var(--preset-queue-accent, #64748b) 45%, #94a3b8);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.preset-status-chip__index[b-9ks9oxj906] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--preset-queue-accent, #64748b) 14%, #ffffff);
    color: var(--preset-queue-accent);
    font-weight: 800;
}

.preset-status-chip__preset[b-9ks9oxj906] {
    font-size: 0.95rem;
    color: #0f172a;
}

.preset-status-chip__time[b-9ks9oxj906] {
    color: #64748b;
    font-size: 0.72rem;
}

.preset-status-detail[b-9ks9oxj906] {
    display: grid;
    gap: 0.7rem;
    padding: 0.85rem;
    min-height: 0;
    position: relative;
    border: 1px solid #dbe4ef;
    border-radius: 18px;
    background: #ffffff;
}

.preset-status-detail[b-9ks9oxj906]::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: color-mix(in srgb, var(--preset-detail-accent, #3b82f6) 80%, #ffffff);
}

.preset-status-detail__summary[b-9ks9oxj906] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.preset-status-detail__summary h6[b-9ks9oxj906] {
    margin: 0.2rem 0 0;
    font-size: 0.98rem;
    color: #0f172a;
}

.preset-status-detail__summary p[b-9ks9oxj906] {
    margin: 0.35rem 0 0;
    color: #475569;
    font-size: 0.9rem;
}

.preset-status-detail__summary-meta[b-9ks9oxj906] {
    display: grid;
    gap: 0.35rem;
    justify-items: end;
}

.preset-status-detail__summary-date[b-9ks9oxj906] {
    color: #64748b;
    font-size: 0.75rem;
    white-space: nowrap;
}

.preset-status-grid-wrapper[b-9ks9oxj906] {
    min-height: 0;
}

.preset-status-grid-wrapper[b-9ks9oxj906]  .k-grid {
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.preset-status-grid-wrapper[b-9ks9oxj906]  .k-grid-header {
    background: #f8fafc;
}

.preset-status-grid-wrapper[b-9ks9oxj906]  .k-grid-header .k-table-th,
.preset-status-grid-wrapper[b-9ks9oxj906]  .k-grid-content .k-table-td {
    padding: 0.65rem 0.75rem;
    border-color: #e2e8f0;
}

.preset-status-grid-wrapper[b-9ks9oxj906]  .k-grid-header .k-table-th {
    color: #475569;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #f8fafc;
    white-space: nowrap;
}

.preset-status-grid-wrapper[b-9ks9oxj906]  .k-grid-content .k-table-tr {
    background: #ffffff;
}

.preset-status-grid-wrapper[b-9ks9oxj906]  .k-grid-content .k-table-td {
    color: #0f172a;
}

.preset-status-detail__hint[b-9ks9oxj906],
.preset-status-detail__notes[b-9ks9oxj906] {
    padding: 0.75rem 0.8rem;
    border-radius: 14px;
    border: 1px solid #dbe4ef;
    background: #f8fafc;
}

.preset-status-detail__hint[b-9ks9oxj906] {
    color: #475569;
    font-size: 0.88rem;
}

.preset-status-detail__notes span[b-9ks9oxj906] {
    display: block;
    margin-bottom: 0.35rem;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.preset-status-detail__notes p[b-9ks9oxj906] {
    margin: 0;
    color: #334155;
}

.preset-status-detail__note-grid[b-9ks9oxj906] {
    display: grid;
    gap: 0.45rem;
}

.preset-status-detail__note-row[b-9ks9oxj906] {
    display: grid;
    grid-template-columns: minmax(112px, 140px) minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    padding: 0.45rem 0;
    border-top: 1px solid rgba(203, 213, 225, 0.6);
}

.preset-status-detail__note-row:first-child[b-9ks9oxj906] {
    border-top: 0;
    padding-top: 0.1rem;
}

.preset-status-detail__note-key[b-9ks9oxj906] {
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.preset-status-detail__note-value[b-9ks9oxj906] {
    min-width: 0;
    color: #0f172a;
    font-size: 0.84rem;
    line-height: 1.4;
    word-break: break-word;
}

.preset-queue-empty[b-9ks9oxj906] {
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px dashed #c8d5e3;
    color: #667085;
    background: rgba(255, 255, 255, 0.75);
}

.preset-queue-empty--full[b-9ks9oxj906] {
    margin: 1rem;
    min-height: 12rem;
    align-content: center;
    justify-items: center;
    text-align: center;
}

@media (max-width: 900px) {
    .preset-status-detail__summary[b-9ks9oxj906] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .preset-status-detail__summary-meta[b-9ks9oxj906] {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }
}

@media (max-width: 640px) {
    .preset-status-window__content[b-9ks9oxj906] {
        padding: 0.6rem;
    }

    .preset-status-strip[b-9ks9oxj906] {
        gap: 0.5rem;
    }

    .preset-status-chip[b-9ks9oxj906] {
        flex: 0 0 calc(33.33% - 0.4rem);
        min-width: 4.5rem;
        padding: 0.6rem 0.4rem;
        min-height: 4.5rem;
    }

    .preset-status-chip__index[b-9ks9oxj906] {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.8rem;
    }

    .preset-status-chip__preset[b-9ks9oxj906] {
        font-size: 0.8rem;
    }

    .preset-status-grid-wrapper[b-9ks9oxj906] {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .preset-status-grid-wrapper[b-9ks9oxj906]  .k-grid {
        min-width: 480px; /* Asegura que la grilla no se rompa y permita scroll gradual */
        font-size: 0.75rem;
    }

    .preset-status-detail__note-row[b-9ks9oxj906] {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
}

@media (max-width: 400px) {
    .preset-status-chip[b-9ks9oxj906] {
        flex: 0 0 calc(50% - 0.3rem); /* Mostrar 2 columnas en pantallas muy pequeñas */
    }
}

/* Device Card Settings Modal */
.device-settings-window[b-9ks9oxj906]  .k-window {
    border-radius: 0;
}

.device-settings-window[b-9ks9oxj906]  .k-window-titlebar {
    border-radius: 0;
    padding: 0.35rem 0.5rem;
    min-height: unset;
}

.device-settings-window[b-9ks9oxj906]  .k-window-content {
    padding: 0;
    border-radius: 0;
}

@media (max-width: 480px) {
    .device-settings-window[b-9ks9oxj906]  .k-window {
        width: 95vw !important;
    }
}

.pre-filter-content[b-9ks9oxj906] {
    padding: 0.5rem;
}

.pre-filter-section[b-9ks9oxj906] {
    margin-bottom: 1.25rem;
}

.pre-filter-section .k-label[b-9ks9oxj906] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pre-filter-options[b-9ks9oxj906] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pre-filter-option[b-9ks9oxj906] {
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    text-align: center;
    transition: box-shadow 0.15s;
    background: #fff;
}

.pre-filter-option:hover[b-9ks9oxj906] {
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.18);
}

.pre-filter-option--selected[b-9ks9oxj906] {
    box-shadow: 0 2px 10px rgba(13, 110, 253, 0.22);
    background: var(--kendo-color-primary-subtle, #f0f5ff);
    color: var(--kendo-color-primary, #0d6efd);
}
/* /Pages/Home/Views/EventsView.razor.rz.scp.css */
.info[b-8c7351rjnm],
.alert[b-8c7351rjnm],
.error[b-8c7351rjnm],
.success[b-8c7351rjnm] {
    display: block;
    color: white;
    border-radius: 0.3rem;
    height: 3rem;
    width: 7rem;
    align-content: center;
    text-align: center;
    font-weight: 600;
}

.info[b-8c7351rjnm] {
    background-color: var(--info-color);
}

.alert[b-8c7351rjnm] {
    background-color: var(--alert-color);
}

.error[b-8c7351rjnm] {
    background-color: var(--error-color);
}

.success[b-8c7351rjnm] {
    background-color: var(--success-color);
}

.info-cricle[b-8c7351rjnm] {
    background-color: var(--info-color);
}

.error-cricle[b-8c7351rjnm] {
    background-color: var(--error-color);
}

.alert-cricle[b-8c7351rjnm] {
    background-color: var(--alert-color);
}
/* /Pages/Home/Views/PosSelfServiceView.razor.rz.scp.css */
.pos-loading[b-cge5v7zux1] {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

.pos-empty[b-cge5v7zux1] {
    text-align: center;
    padding: 3rem 0;
    color: var(--kendo-color-subtle);
}

/* Geofence banner */
.pos-geofence-banner[b-cge5v7zux1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.pos-geofence-banner--checking[b-cge5v7zux1] {
    background-color: var(--kendo-color-info-subtle, #e7f3ff);
    color: var(--kendo-color-info, #0d6efd);
}

.pos-geofence-banner--ok[b-cge5v7zux1] {
    background-color: var(--kendo-color-success-subtle, #d1e7dd);
    color: var(--kendo-color-success, #198754);
}

.pos-geofence-banner--warning[b-cge5v7zux1] {
    background-color: var(--kendo-color-warning-subtle, #fff3cd);
    color: var(--kendo-color-warning-on-subtle, #664d03);
}

.pos-geofence-banner--info[b-cge5v7zux1] {
    background-color: var(--kendo-color-base-subtle, #f5f5f5);
    color: var(--kendo-color-subtle, #6c757d);
}

/* Device grid */
.pos-devices-grid[b-cge5v7zux1] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

/* Tracking modal */
.pos-tracking[b-cge5v7zux1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pos-tracking__row[b-cge5v7zux1] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pos-tracking__label[b-cge5v7zux1] {
    font-size: 0.8rem;
    color: var(--kendo-color-subtle, #6c757d);
    min-width: 100px;
}

.pos-tracking__value[b-cge5v7zux1] {
    font-weight: 500;
}

.pos-tracking__key[b-cge5v7zux1] {
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.pos-tracking__id[b-cge5v7zux1] {
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--kendo-color-subtle, #6c757d);
}

.pos-tracking__status--awaitingauth[b-cge5v7zux1] { color: var(--kendo-color-info, #0d6efd); }
.pos-tracking__status--pending[b-cge5v7zux1]      { color: var(--kendo-color-info, #0d6efd); }
.pos-tracking__status--sent[b-cge5v7zux1]         { color: var(--kendo-color-warning, #ffc107); }
.pos-tracking__status--inprogress[b-cge5v7zux1]   { color: var(--kendo-color-warning, #ffc107); }
.pos-tracking__status--completed[b-cge5v7zux1]    { color: var(--kendo-color-success, #198754); }
.pos-tracking__status--cancelled[b-cge5v7zux1],
.pos-tracking__status--failed[b-cge5v7zux1],
.pos-tracking__status--expired[b-cge5v7zux1]      { color: var(--kendo-color-error, #dc3545); }

/* Unlock code */
.pos-unlock-code[b-cge5v7zux1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.pos-unlock-code__value[b-cge5v7zux1] {
    font-family: monospace;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.pos-unlock-code__expiry[b-cge5v7zux1] {
    color: var(--kendo-color-subtle, #6c757d);
}

/* Preset form */
.pos-preset-form[b-cge5v7zux1] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Mobile keyboard handling for preset modal */
@media (max-width: 768px) {
    .atom-preset-modal-window[b-cge5v7zux1]  .k-window {
        height: min(60dvh, 510px) !important;
        max-height: 60dvh !important;
        align-self: flex-end;
    }

    .atom-preset-modal-window[b-cge5v7zux1]  .k-window-content {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .atom-preset-modal-window.keyboard-open[b-cge5v7zux1]  .k-window {
        height: 45dvh !important;
        max-height: 45dvh !important;
    }
}
/* /Pages/Home/Views/TankView.razor.rz.scp.css */
/* Tank View Wrapper - fills available height and scrolls vertically */
.tank-view-wrapper[b-39lp41oizv] {
    flex: 1;
    overflow-y: auto;
    padding-top: 0.75rem;
}

/* Tank View Filter Container */
.tank-filter-container[b-39lp41oizv] {
    position: absolute;
    top: -8px;
    right: 4px;
    z-index: 10;
}

@media (max-width: 768px) {
    .tank-filter-container[b-39lp41oizv] {
        top: 4px;
        right: 2px;
    }
}

.tank-filter-btn[b-39lp41oizv] {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px 8px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #fff;
    color: #667085;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.tank-filter-btn:hover[b-39lp41oizv] {
    border-color: #017DC0;
    color: #017DC0;
    background: #f0f7ff;
}

.tank-filter-menu[b-39lp41oizv] {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    padding: 4px;
    animation: filterMenuAppear-b-39lp41oizv 0.15s ease-out;
}

@keyframes filterMenuAppear-b-39lp41oizv {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.tank-filter-option[b-39lp41oizv] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 6px 10px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.78rem;
    color: #4a5568;
    transition: all 0.15s;
    text-align: left;
}

.tank-filter-option:hover[b-39lp41oizv] {
    background: #f0f7ff;
    color: #017DC0;
}

.tank-filter-option.active[b-39lp41oizv] {
    background: #017DC0;
    color: #ffffff;
}

.tank-filter-option i[b-39lp41oizv] {
    width: 16px;
    text-align: center;
    font-size: 0.7rem;
}

.tank-filter-divider[b-39lp41oizv] {
    height: 1px;
    background: #e2e8f0;
    margin: 3px 6px;
}

/* Hidden notice */
.tank-hidden-notice[b-39lp41oizv] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    color: #5a8db5;
    font-size: 0.82rem;
    border: 1px dashed #b8d4e8;
    border-radius: 10px;
    background: #f8fbff;
}

.tank-hidden-notice i[b-39lp41oizv] {
    font-size: 1rem;
    opacity: 0.6;
}

.tank-hidden-notice__btn[b-39lp41oizv] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border: 1px solid #017DC0;
    border-radius: 6px;
    background: transparent;
    color: #017DC0;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s;
}

.tank-hidden-notice__btn:hover[b-39lp41oizv] {
    background: #017DC0;
    color: #fff;
}

@media (max-width: 768px) {
    .tank-hidden-notice[b-39lp41oizv] {
        flex-direction: column;
        gap: 8px;
        font-size: 0.75rem;
        padding: 1rem;
        margin-top: 1rem;
    }
}

/* ========================= PROMO EMPTY STATE ========================= */
.tank-promo-empty[b-39lp41oizv] {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.tank-promo-empty__card[b-39lp41oizv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
    padding: 2rem 1.5rem;
    border: 1px dashed #b8d4e8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(1, 125, 192, 0.08);
    text-align: center;
}

.tank-promo-empty__demo[b-39lp41oizv] {
    margin: 1rem 0 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Premium Tank Mockup for Empty State */
.tank-mock-card[b-39lp41oizv] {
    width: 130px;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    padding: 0.7rem;
    border: 1px solid #f0f4f8;
    position: relative;
    user-select: none;
    transition: transform 0.3s ease;
}

.tank-mock-card:hover[b-39lp41oizv] {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tank-mock-header[b-39lp41oizv] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem; /* Adjusted for smaller gauge */
}

.tank-mock-status-icon[b-39lp41oizv] {
    color: #28a745;
    font-size: 0.85rem;
    margin-top: 4px;
}

.tank-mock-refresh[b-39lp41oizv] {
    color: #cbd5e0;
    font-size: 0.75rem;
    margin-top: 4px;
}

.tank-mock-titles[b-39lp41oizv] {
    text-align: center;
    flex-grow: 1;
}

.tank-mock-product[b-39lp41oizv] {
    font-size: 0.65rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
    letter-spacing: -0.1px;
}

.tank-mock-status-text[b-39lp41oizv] {
    font-size: 0.45rem;
    color: #017DC0;
    font-weight: 600;
}

.tank-mock-name[b-39lp41oizv] {
    display: block;
    font-size: 0.45rem;
    color: #718096;
    margin-top: 1px;
    font-weight: 500;
}

.tank-mock-body[b-39lp41oizv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tank-mock-gauge[b-39lp41oizv] {
    position: absolute;
    top: -1.4rem; 
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    border: 1.5px solid #edf2f7;
    overflow: hidden;
    background: #ffffff;
    box-shadow: inset 0 1px 5px rgba(0,0,0,0.02);
}

/* ── GAUGE CLIP ── */
.tank-gauge-clip[b-39lp41oizv] {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
}

/* ── LIQUID BODY ── */
.tank-liquid[b-39lp41oizv] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: top 1.1s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

/* ── FILL SOLIDO bajo la ola ── */
.tank-liquid-fill[b-39lp41oizv] {
    position: absolute;
    inset: 3px 0 0 0;
    background: var(--tc, #017DC0);
}

/* ── CAPAS DE OLA ── */
.tank-wave-layer[b-39lp41oizv] {
    position: absolute;
    top: -1px;
    left: -25%;
    width: 150%;
    height: 4px;
    border-radius: 45%;
    animation: tankWave-b-39lp41oizv 5s ease-in-out infinite alternate;
}

/* Capa A: color solido del liquido */
.tank-wave-layer.a[b-39lp41oizv] {
    background: var(--tc, #017DC0);
}

/* Capa B: mismo color, semi-transparente */
.tank-wave-layer.b[b-39lp41oizv] {
    background: var(--tc, #017DC0);
    opacity: .65;
    animation-delay: .55s;
    height: 3px;
}

/* Capa C: blanca translucida — espuma de superficie */
.tank-wave-layer.c[b-39lp41oizv] {
    background: rgba(255, 255, 255, 0.55);
    animation-delay: 1.1s;
}

@keyframes tankWave-b-39lp41oizv {
    0%   { transform: rotate(0deg) translate(0px, 0px); }
    50%  { transform: rotate(-3deg) translate(-12px, 2px); }
    100% { transform: rotate(4deg) translate(20px, -3px); }
}

.tank-mock-fill-text[b-39lp41oizv] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #111111;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
    z-index: 3;
    pointer-events: none;
}

.tank-mock-drop[b-39lp41oizv] {
    position: absolute;
    height: 0.8rem;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.9;
}

.tank-mock-footer[b-39lp41oizv] {
    margin-top: 4.5rem; 
    color: #d1d5db;
    font-size: 0.5rem;
}

.tank-promo-empty__title[b-39lp41oizv] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #017DC0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.tank-promo-empty__message[b-39lp41oizv] {
    font-size: 0.82rem;
    color: #5a8db5;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: 320px;
}

.tank-promo-empty__features[b-39lp41oizv] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.tank-promo-empty__feature[b-39lp41oizv] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: #4a7a9b;
    padding: 0.4rem 0.8rem;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 3px solid #017DC0;
}

.tank-promo-empty__feature i[b-39lp41oizv] {
    font-size: 0.8rem;
    color: #017DC0;
    width: 18px;
    text-align: center;
}

.tank-promo-empty__cta[b-39lp41oizv] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 2px solid #017DC0;
    border-radius: 8px;
    background: transparent;
    color: #017DC0;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tank-promo-empty__cta:hover[b-39lp41oizv] {
    background: #017DC0;
    color: #fff;
}

@media (max-width: 768px) {
    .tank-promo-empty[b-39lp41oizv] {
        padding: 1rem 0.5rem;
    }

    .tank-promo-empty__card[b-39lp41oizv] {
        padding: 1.5rem 1rem;
    }
}
/* /Pages/Integrations/Views/IntegratorsManagementView.razor.rz.scp.css */
.dashboard-card[b-bnn9vgj3dj] {
    border-left: 4px solid;
    background-color: #f8f9fa; 
    color: #495057; 
    transition: all 0.2s ease-in-out;
}

.dashboard-card:hover[b-bnn9vgj3dj] {
    background-color: #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dashboard-card.active[b-bnn9vgj3dj] {
    border-color: #28a745; 
}

.dashboard-card.certified[b-bnn9vgj3dj] {
    border-color: #17a2b8;
}

.dashboard-card.endpoints[b-bnn9vgj3dj] {
    border-color: #6f42c1; 
}

.dashboard-card.requests[b-bnn9vgj3dj] {
    border-color: #6c757d; 
}

.status-badge-success[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #28a745 !important;
    border: 1px solid #28a745 !important;
    font-weight: 500;
}

.status-badge-warning[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #856404 !important;
    border: 1px solid #ffc107 !important;
    font-weight: 500;
}

.status-badge-danger[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #dc3545 !important;
    border: 1px solid #dc3545 !important;
    font-weight: 500;
}

.status-badge-info[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #17a2b8 !important;
    border: 1px solid #17a2b8 !important;
    font-weight: 500;
}

.status-badge-secondary[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border: 1px solid #6c757d !important;
    font-weight: 500;
}

.multi-owner-card[b-bnn9vgj3dj] {
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    transition: all 0.2s ease-in-out;
}

.multi-owner-card:hover[b-bnn9vgj3dj] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.multi-owner-card .card-header[b-bnn9vgj3dj] {
    background-color: #e9ecef;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
}

.border-success[b-bnn9vgj3dj] {
    border-color: #28a745 !important;
}

.border-error[b-bnn9vgj3dj] {
    border-color: #dc3545 !important;
}

.border-warning[b-bnn9vgj3dj] {
    border-color: #ffc107 !important;
}

.border-info[b-bnn9vgj3dj] {
    border-color: #17a2b8 !important;
}

.border-secondary[b-bnn9vgj3dj] {
    border-color: #6c757d !important;
}

.alert-custom-info[b-bnn9vgj3dj] {
    background-color: #f8f9fa;
    border: 1px solid #17a2b8;
    color: #0c5460;
}

.alert-custom-warning[b-bnn9vgj3dj] {
    background-color: #f8f9fa;
    border: 1px solid #ffc107;
    color: #856404;
}

.alert-custom-success[b-bnn9vgj3dj] {
    background-color: #f8f9fa;
    border: 1px solid #28a745;
    color: #155724;
}

.alert-custom-danger[b-bnn9vgj3dj] {
    background-color: #f8f9fa;
    border: 1px solid #dc3545;
    color: #721c24;
}

.modal-content[b-bnn9vgj3dj] {
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.modal-header[b-bnn9vgj3dj] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    color: #495057;
}

.table-responsive[b-bnn9vgj3dj] {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.badge.bg-success[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #28a745 !important;
    border: 1px solid #28a745 !important;
}

.badge.bg-warning[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #856404 !important;
    border: 1px solid #ffc107 !important;
}

.badge.bg-danger[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #dc3545 !important;
    border: 1px solid #dc3545 !important;
}

.badge.bg-info[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #17a2b8 !important;
    border: 1px solid #17a2b8 !important;
}

.badge.bg-secondary[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border: 1px solid #6c757d !important;
}

.badge.bg-primary[b-bnn9vgj3dj] {
    background-color: #f8f9fa !important;
    color: #0d6efd !important;
    border: 1px solid #0d6efd !important;
}

 
@media (max-width: 767.98px) {
    .integrator-mobile-card[b-bnn9vgj3dj] {
        border: 1px solid #e9ecef;
        border-left: 4px solid #007bff;
        border-radius: 0.75rem;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        background-color: #ffffff;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    
    .integrator-mobile-card:hover[b-bnn9vgj3dj] {
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        transform: translateY(-3px);
        border-left-width: 5px;
    }
    
    .integrator-mobile-card.active[b-bnn9vgj3dj] {
        border-left-color: #28a745;
    }
    
    .integrator-mobile-card.active:hover[b-bnn9vgj3dj] {
        border-left-color: #1e7e34;
    }
    
    .integrator-mobile-card.inactive[b-bnn9vgj3dj] {
        border-left-color: #6c757d;
        background-color: #f8f9fa;
    }
    
    .integrator-mobile-card.inactive:hover[b-bnn9vgj3dj] {
        border-left-color: #5a6268;
    }
    
    .integrator-mobile-card.certified[b-bnn9vgj3dj] {
        border-left-color: #17a2b8;
    }
    
    .integrator-mobile-card.certified:hover[b-bnn9vgj3dj] {
        border-left-color: #138496;
    }
    
    .integrator-mobile-card .card-body[b-bnn9vgj3dj] {
        padding: 1rem;
    }
    
    .integrator-mobile-card .card-title[b-bnn9vgj3dj] {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2c3e50;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    .integrator-mobile-card .badge[b-bnn9vgj3dj] {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        border-radius: 0.5rem;
        font-weight: 600;
        margin: 0.1rem 0.2rem 0.1rem 0;
    }
    
    .integrator-mobile-card .rounded-pill[b-bnn9vgj3dj] {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
    
    .integrator-mobile-card .bg-light[b-bnn9vgj3dj] {
        background-color: #f8f9fa !important;
        border: 1px solid #e9ecef;
        border-radius: 0.5rem;
    }
    
    .integrator-mobile-card .fw-bold[b-bnn9vgj3dj] {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .integrator-mobile-card small[b-bnn9vgj3dj] {
        font-size: 0.7rem;
        color: #6c757d;
        font-weight: 500;
    }
    
    .integrator-mobile-card strong[b-bnn9vgj3dj] {
        font-size: 0.85rem;
        color: #2c3e50;
        font-weight: 600;
    }
    
    .integrator-mobile-card .btn-group[b-bnn9vgj3dj] {
        width: 100%;
    }
    
    .integrator-mobile-card .btn-group .btn[b-bnn9vgj3dj] {
        flex: 1;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        font-weight: 600;
        border-radius: 0.5rem;
        transition: all 0.2s ease-in-out;
    }
    
    .integrator-mobile-card .btn-group .btn:first-child[b-bnn9vgj3dj] {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .integrator-mobile-card .btn-group .btn:last-child[b-bnn9vgj3dj] {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .integrator-mobile-card .btn-group .btn:not(:first-child):not(:last-child)[b-bnn9vgj3dj] {
        border-radius: 0;
    }
    
    .integrator-mobile-card .text-truncate[b-bnn9vgj3dj] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .integrator-mobile-card .card-body[b-bnn9vgj3dj] {
        padding: 0.75rem;
    }
    
    .integrator-mobile-card .card-title[b-bnn9vgj3dj] {
        font-size: 1rem;
        font-weight: 600;
        color: #495057;
        margin-bottom: 0.25rem;
    }
    
    .integrator-mobile-card .badge[b-bnn9vgj3dj] {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
        margin: 0.1rem 0.2rem 0.1rem 0;
    }
    
    .integrator-mobile-card small[b-bnn9vgj3dj] {
        font-size: 0.7rem;
        color: #6c757d;
        font-weight: 500;
    }
    
    .integrator-mobile-card strong[b-bnn9vgj3dj] {
        font-size: 0.8rem;
        color: #495057;
        font-weight: 600;
    }
    
    .integrator-mobile-card .btn-sm[b-bnn9vgj3dj] {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        border-radius: 0.25rem;
    }
    
    .integrator-mobile-card .row[b-bnn9vgj3dj] {
        margin: 0 -0.25rem;
    }
    
    .integrator-mobile-card .row > [class^="col"][b-bnn9vgj3dj] {
        padding: 0 0.25rem;
    }
    
    .integrator-mobile-info[b-bnn9vgj3dj] {
        line-height: 1.2;
        font-size: 0.85rem;
    }
    
    .integrator-mobile-info .badge[b-bnn9vgj3dj] {
        font-size: 0.65rem;
        margin: 0.1rem 0.2rem 0.1rem 0;
        padding: 0.2rem 0.4rem;
    }
    
    .integrator-mobile-info small[b-bnn9vgj3dj] {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .integrator-mobile-info strong[b-bnn9vgj3dj] {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    
    .k-window[b-bnn9vgj3dj] {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        border-radius: 0 !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    .k-window-content[b-bnn9vgj3dj] {
        padding: 0.75rem;
        height: calc(70vh - 120px) !important;
        overflow-y: auto;
    }
    
    .k-window-titlebar[b-bnn9vgj3dj] {
        padding: 0.75rem;
        border-bottom: 1px solid #dee2e6;
    }
    
    .k-window-title[b-bnn9vgj3dj] {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .k-window-actions .k-button[b-bnn9vgj3dj] {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        margin: 0.25rem;
        min-width: 80px;
    }
    
    .container-fluid .row.mb-4[b-bnn9vgj3dj] {
        margin-bottom: 1rem !important;
    }
    
    .dashboard-card[b-bnn9vgj3dj] {
        margin-bottom: 0.75rem;
    }
    
    .dashboard-card .card-body[b-bnn9vgj3dj] {
        padding: 0.75rem;
    }
    
    .dashboard-card h3[b-bnn9vgj3dj] {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .dashboard-card h5[b-bnn9vgj3dj] {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .container-fluid h1[b-bnn9vgj3dj] {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem;
    }
    
    .container-fluid p[b-bnn9vgj3dj] {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .container-fluid .col-auto .btn[b-bnn9vgj3dj] {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        margin: 0.2rem;
        width: auto;
        min-width: 120px;
    }
    
    .multi-owner-card .row.text-center[b-bnn9vgj3dj] {
        margin-bottom: 0.5rem;
    }
    
    .multi-owner-card .row.text-center .col-4[b-bnn9vgj3dj] {
        padding: 0.2rem;
    }
    
    .multi-owner-card .row.text-center h5[b-bnn9vgj3dj] {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
    }
    
    .multi-owner-card .row.text-center small[b-bnn9vgj3dj] {
        font-size: 0.65rem;
    }
    
    .multi-owner-card .card-body[b-bnn9vgj3dj] {
        padding: 0.75rem;
    }
    
    .multi-owner-card .list-group-item[b-bnn9vgj3dj] {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .k-grid-table .d-md-table-cell[b-bnn9vgj3dj] {
        display: table-cell !important;
    }
    
    .k-grid-table .d-lg-table-cell[b-bnn9vgj3dj] {
        display: none !important;
    }
    
    .k-grid-table td[b-bnn9vgj3dj] {
        padding: 0.5rem 0.4rem;
    }
    
    .modal-responsive[b-bnn9vgj3dj] {
        width: 90vw !important;
        max-width: 90vw !important;
        height: 90vh !important;
        max-height: 90vh !important;
    }
    
    .dashboard-card[b-bnn9vgj3dj] {
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .k-grid-table .d-md-table-cell[b-bnn9vgj3dj],
    .k-grid-table .d-lg-table-cell[b-bnn9vgj3dj] {
        display: table-cell !important;
    }
    
    .integrator-mobile-info .d-md-none[b-bnn9vgj3dj] {
        display: none !important;
    }
}


@media (max-width: 767.98px) {
    .modal__config .card-header h6[b-bnn9vgj3dj] {
        font-size: 0.9rem;
    }
    
    .modal__config .card-body[b-bnn9vgj3dj] {
        padding: 0.75rem;
    }
    
    .modal__config .btn-group-sm .btn[b-bnn9vgj3dj] {
        padding: 0.25rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .modal__config .table-responsive[b-bnn9vgj3dj] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal__config .k-grid-table[b-bnn9vgj3dj] {
        min-width: 600px;
    }
    
    .modal__config .badge[b-bnn9vgj3dj] {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .modal__config code[b-bnn9vgj3dj] {
        font-size: 0.7rem;
        word-break: break-all;
    }
}


.endpoints-detail-modal[b-bnn9vgj3dj] {
    max-width: 700px;
}

@media (max-width: 767.98px) {
    .endpoints-detail-modal[b-bnn9vgj3dj] {
        max-width: 100vw !important;
        margin: 0 !important;
        height: 100vh !important;
    }
    
    .endpoints-detail-modal .modal-content[b-bnn9vgj3dj] {
        height: 100vh !important;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .endpoints-detail-modal .modal-header[b-bnn9vgj3dj] {
        flex-shrink: 0;
        padding: 0.75rem;
        border-bottom: 1px solid #dee2e6;
    }
    
    .endpoints-detail-modal .modal-title[b-bnn9vgj3dj] {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .endpoints-detail-modal .modal-body[b-bnn9vgj3dj] {
        flex: 1;
        overflow-y: auto;
        padding: 0.75rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .endpoints-detail-modal .modal-footer[b-bnn9vgj3dj] {
        flex-shrink: 0;
        padding: 0.75rem;
        border-top: 1px solid #dee2e6;
    }
    
    .endpoints-detail-modal .modal-footer .btn[b-bnn9vgj3dj] {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        margin: 0.25rem;
    }
    
    .endpoints-detail-modal .row.mb-3 .col-4[b-bnn9vgj3dj] {
        margin-bottom: 0.5rem;
    }
    
    .endpoints-detail-modal .card .card-body[b-bnn9vgj3dj] {
        padding: 0.5rem;
    }
    
    .endpoints-detail-modal .card h5[b-bnn9vgj3dj] {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    
    .endpoints-detail-modal .card small[b-bnn9vgj3dj] {
        font-size: 0.7rem;
    }
    
    .endpoints-detail-list[b-bnn9vgj3dj] {
        max-height: none;
    }
    
    .endpoint-detail-item[b-bnn9vgj3dj] {
        padding: 0.6rem;
        border: 1px solid #dee2e6;
        border-radius: 0.375rem;
        margin-bottom: 0.5rem;
        background-color: #f8f9fa;
        border-left: 3px solid;
    }
    
    .endpoint-detail-item.border-success[b-bnn9vgj3dj] {
        border-left-color: #28a745 !important;
    }
    
    .endpoint-detail-item.border-warning[b-bnn9vgj3dj] {
        border-left-color: #ffc107 !important;
    }
    
    .endpoint-detail-item.border-danger[b-bnn9vgj3dj] {
        border-left-color: #dc3545 !important;
    }
    
    .endpoint-detail-item code[b-bnn9vgj3dj] {
        font-size: 0.75rem;
        word-break: break-all;
        background-color: #e9ecef;
        padding: 0.2rem 0.3rem;
        border-radius: 0.25rem;
        line-height: 1.2;
    }
    
    .endpoint-detail-item .badge[b-bnn9vgj3dj] {
        font-size: 0.65rem;
        margin: 0.1rem 0.2rem 0.1rem 0;
        padding: 0.15rem 0.3rem;
    }
    
    .endpoint-detail-item strong[b-bnn9vgj3dj] {
        font-size: 0.85rem;
    }
    
    .endpoint-detail-item small[b-bnn9vgj3dj] {
        font-size: 0.7rem;
        color: #6c757d;
    }
    
    .endpoint-detail-item .row .col-6[b-bnn9vgj3dj] {
        margin-bottom: 0.25rem;
    }
    
    .endpoint-detail-item .fs-5[b-bnn9vgj3dj] {
        font-size: 1rem !important;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .endpoints-detail-modal[b-bnn9vgj3dj] {
        max-width: 90vw;
    }
    
    .endpoints-detail-modal .modal-body[b-bnn9vgj3dj] {
        max-height: 70vh;
        overflow-y: auto;
    }
}


.text-truncate-mobile[b-bnn9vgj3dj] {
    @media (max-width: 767.98px) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;[b-bnn9vgj3dj]
    }
}

.mb-mobile[b-bnn9vgj3dj] {
    @media (max-width: 767.98px) {
        margin-bottom: 0.5rem !important;[b-bnn9vgj3dj]
    }
}

.p-mobile[b-bnn9vgj3dj] {
    @media (max-width: 767.98px) {
        padding: 0.5rem !important;[b-bnn9vgj3dj]
    }
}

.stack-mobile[b-bnn9vgj3dj] {
    @media (max-width: 767.98px) {
        display: block !important;[b-bnn9vgj3dj]
    }
    
    @media (max-width: 767.98px) {
        > *[b-bnn9vgj3dj] {
            margin-bottom: 0.5rem;
            width: 100% !important;
        }
    }
}
/* /Pages/Integrations/Views/SubscriptionKeyMetricsView.razor.rz.scp.css */

.metrics-card[b-kx2vnxj345] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease-in-out;
}

.metrics-card:hover[b-kx2vnxj345] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.border-success[b-kx2vnxj345] {
    border-color: #28a745 !important;
}

.border-error[b-kx2vnxj345] {
    border-color: #dc3545 !important;
}

.border-warning[b-kx2vnxj345] {
    border-color: #ffc107 !important;
}

.border-info[b-kx2vnxj345] {
    border-color: #17a2b8 !important;
}

.border-secondary[b-kx2vnxj345] {
    border-color: #6c757d !important;
}

.badge.bg-success[b-kx2vnxj345] {
    background-color: #f8f9fa !important;
    color: #28a745 !important;
    border: 1px solid #28a745 !important;
}

.badge.bg-warning[b-kx2vnxj345] {
    background-color: #f8f9fa !important;
    color: #856404 !important;
    border: 1px solid #ffc107 !important;
}

.badge.bg-danger[b-kx2vnxj345] {
    background-color: #f8f9fa !important;
    color: #dc3545 !important;
    border: 1px solid #dc3545 !important;
}

.badge.bg-info[b-kx2vnxj345] {
    background-color: #f8f9fa !important;
    color: #17a2b8 !important;
    border: 1px solid #17a2b8 !important;
}

.badge.bg-secondary[b-kx2vnxj345] {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border: 1px solid #6c757d !important;
}

.badge.bg-primary[b-kx2vnxj345] {
    background-color: #f8f9fa !important;
    color: #0d6efd !important;
    border: 1px solid #0d6efd !important;
}

.alert-custom-info[b-kx2vnxj345] {
    background-color: #f8f9fa;
    border: 1px solid #17a2b8;
    color: #0c5460;
}

.alert-custom-warning[b-kx2vnxj345] {
    background-color: #f8f9fa;
    border: 1px solid #ffc107;
    color: #856404;
}

.alert-custom-success[b-kx2vnxj345] {
    background-color: #f8f9fa;
    border: 1px solid #28a745;
    color: #155724;
}

.alert-custom-danger[b-kx2vnxj345] {
    background-color: #f8f9fa;
    border: 1px solid #dc3545;
    color: #721c24;
}

.status-border-left[b-kx2vnxj345] {
    border-left: 4px solid;
}

.status-border-left.success[b-kx2vnxj345] {
    border-left-color: #28a745;
}

.status-border-left.warning[b-kx2vnxj345] {
    border-left-color: #ffc107;
}

.status-border-left.danger[b-kx2vnxj345] {
    border-left-color: #dc3545;
}

.status-border-left.info[b-kx2vnxj345] {
    border-left-color: #17a2b8;
}

.status-border-left.secondary[b-kx2vnxj345] {
    border-left-color: #6c757d;
}

 
.metrics-summary-card[b-kx2vnxj345] {
    transition: all 0.2s ease-in-out;
    background-color: #f8f9fa;
}

.metrics-summary-card:hover[b-kx2vnxj345] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

 
@media (max-width: 767.98px) {
 
    .container-fluid h1[b-kx2vnxj345] {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem;
    }
    
    .container-fluid p[b-kx2vnxj345] {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
 
    .container-fluid .col-auto[b-kx2vnxj345] {
        margin-top: 0.5rem;
    }
    
    .container-fluid .col-auto .btn[b-kx2vnxj345] {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        margin: 0.2rem 0.2rem 0.2rem 0;
        width: auto;
        min-width: 100px;
        display: inline-block;
    }
    
 
    .metrics-summary-card .card-body[b-kx2vnxj345] {
        padding: 0.6rem;
    }
    
    .metrics-number[b-kx2vnxj345] {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
        font-weight: 700;
    }
    
    .metrics-label[b-kx2vnxj345] {
        font-size: 0.7rem;
        line-height: 1.1;
        color: #6c757d;
    }
    
 
    .metrics-summary-card .align-self-center[b-kx2vnxj345] {
        display: none !important;
    }
 
    .metrics-mobile-card[b-kx2vnxj345] {
        border-left: 3px solid;
        background-color: #f8f9fa;
        margin-bottom: 0.5rem;
    }
    
    .metrics-mobile-card.border-success[b-kx2vnxj345] {
        border-left-color: #28a745;
    }
    
    .metrics-mobile-card.border-warning[b-kx2vnxj345] {
        border-left-color: #ffc107;
    }
    
    .metrics-mobile-card.border-danger[b-kx2vnxj345] {
        border-left-color: #dc3545;
    }
    
    .metrics-mobile-card .card-body[b-kx2vnxj345] {
        padding: 0.6rem;
    }
    
    .metrics-mobile-card code[b-kx2vnxj345] {
        font-size: 0.75rem;
        word-break: break-all;
        line-height: 1.1;
        background-color: #e9ecef;
        padding: 0.2rem 0.3rem;
        border-radius: 0.25rem;
    }
    
    .metrics-mobile-card .badge[b-kx2vnxj345] {
        font-size: 0.65rem;
        padding: 0.15rem 0.3rem;
        margin: 0.1rem 0.2rem 0.1rem 0;
    }
    
    .metrics-mobile-card .btn-group-sm .btn[b-kx2vnxj345] {
        padding: 0.2rem 0.35rem;
        font-size: 0.7rem;
        margin: 0.1rem;
    }
    
    .metrics-mobile-card strong[b-kx2vnxj345] {
        font-size: 0.85rem;
    }
    
    .metrics-mobile-card small[b-kx2vnxj345] {
        font-size: 0.7rem;
        color: #6c757d;
    }
    
    .metrics-mobile-card .progress[b-kx2vnxj345] {
        height: 3px;
        margin: 0.1rem 0;
    }
    
    .table-responsive[b-kx2vnxj345] {
        font-size: 0.8rem;
    }
    
    .table th[b-kx2vnxj345],
    .table td[b-kx2vnxj345] {
        padding: 0.4rem 0.2rem;
        border-bottom: 1px solid #dee2e6;
    }
    
    .table th[b-kx2vnxj345] {
        font-size: 0.75rem;
        font-weight: 600;
        background-color: #f8f9fa;
    }
    
    .modal.show .modal-dialog[b-kx2vnxj345] {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
    }
    
    .modal-fullscreen-sm-down .modal-content[b-kx2vnxj345] {
        height: 100vh !important;
        border: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .modal-fullscreen-sm-down .modal-header[b-kx2vnxj345] {
        padding: 0.75rem;
        border-bottom: 1px solid #dee2e6;
        flex-shrink: 0;
    }
    
    .modal-fullscreen-sm-down .modal-title[b-kx2vnxj345] {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .modal-fullscreen-sm-down .modal-body[b-kx2vnxj345] {
        flex: 1;
        overflow-y: auto;
        padding: 0.75rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-fullscreen-sm-down .modal-footer[b-kx2vnxj345] {
        padding: 0.75rem;
        border-top: 1px solid #dee2e6;
        flex-shrink: 0;
    }
    
    .modal-fullscreen-sm-down .modal-footer .btn[b-kx2vnxj345] {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        margin: 0.25rem;
        min-width: 80px;
    }
    
    .modal-body .form-label[b-kx2vnxj345] {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
    }
    
    .modal-body .form-control[b-kx2vnxj345] {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .modal-body .form-check-label[b-kx2vnxj345] {
        font-size: 0.85rem;
    }
    
    .modal-body .mb-3[b-kx2vnxj345] {
        margin-bottom: 0.75rem !important;
    }
    
    .card.mb-4[b-kx2vnxj345] {
        margin-bottom: 1rem !important;
    }
    
    .card-header h5[b-kx2vnxj345] {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .card-body[b-kx2vnxj345] {
        padding: 0.75rem;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .metrics-summary-card .card-body[b-kx2vnxj345] {
        padding: 1rem 0.75rem;
    }
    
    .metrics-number[b-kx2vnxj345] {
        font-size: 1.75rem;
    }
    
    .metrics-label[b-kx2vnxj345] {
        font-size: 0.9rem;
    }
    
    .table th[b-kx2vnxj345],
    .table td[b-kx2vnxj345] {
        padding: 0.5rem 0.4rem;
        vertical-align: middle;
    }
    
    .table code[b-kx2vnxj345] {
        font-size: 0.8rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .table .badge[b-kx2vnxj345] {
        font-size: 0.7rem;
    }
    
    .table .btn-group-sm .btn[b-kx2vnxj345] {
        padding: 0.25rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .progress[b-kx2vnxj345] {
        height: 6px;
    }
}

@media (min-width: 1024px) {
    .metrics-summary-card .card-body[b-kx2vnxj345] {
        padding: 1.25rem 1rem;
    }
    
    .metrics-number[b-kx2vnxj345] {
        font-size: 2rem;
    }
    
    .metrics-label[b-kx2vnxj345] {
        font-size: 1rem;
    }
    
    .table th[b-kx2vnxj345],
    .table td[b-kx2vnxj345] {
        padding: 0.75rem;
        vertical-align: middle;
    }
    
    .table code[b-kx2vnxj345] {
        font-size: 0.875rem;
    }
    
    .table .badge[b-kx2vnxj345] {
        font-size: 0.75rem;
    }
    
    .table .btn-group-sm .btn[b-kx2vnxj345] {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .progress[b-kx2vnxj345] {
        height: 8px;
    }
}


@media (max-width: 576px) {
    .container-fluid[b-kx2vnxj345] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .metrics-summary-card .metrics-number[b-kx2vnxj345] {
        font-size: 1.25rem;
    }
    
    .metrics-summary-card .metrics-label[b-kx2vnxj345] {
        font-size: 0.75rem;
    }
    
    .metrics-mobile-card[b-kx2vnxj345] {
        margin-bottom: 0.75rem;
    }
    
    .metrics-mobile-card .card-body[b-kx2vnxj345] {
        padding: 0.5rem;
    }
}

.metrics-summary-card[b-kx2vnxj345],
.metrics-mobile-card[b-kx2vnxj345] {
    transition: all 0.2s ease-in-out;
}

.metrics-summary-card:hover[b-kx2vnxj345],
.metrics-mobile-card:hover[b-kx2vnxj345] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.metrics-loading[b-kx2vnxj345] {
    opacity: 0.6;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .metrics-summary-card[b-kx2vnxj345],
    .metrics-mobile-card[b-kx2vnxj345] {
        transition: none;
    }
    
    .metrics-summary-card:hover[b-kx2vnxj345],
    .metrics-mobile-card:hover[b-kx2vnxj345] {
        transform: none;
    }
}
/* /Pages/Integrations/VolumetricControl/Views/ControlVolumetricsView.razor.rz.scp.css */

.volumetrics-container[b-g4xm8vping] {
    padding: 20px;
}

    .volumetrics-container .card[b-g4xm8vping] {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .volumetrics-container .card-header[b-g4xm8vping] {
        background-color: #f8f9fa;
        border-bottom: 1px solid rgba(0, 0, 0, 0.125);
        padding: 15px 20px;
    }

    .volumetrics-container .table th[b-g4xm8vping] {
        background-color: #f8f9fa;
        font-weight: 500;
    }

    .volumetrics-container .btn-group[b-g4xm8vping] {
        white-space: nowrap;
    }

    .volumetrics-container h4[b-g4xm8vping] {
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 500;
        color: #333;
    }


.device-detail-modal[b-g4xm8vping] {
    border-radius: 8px;
    overflow: hidden;
}

    .device-detail-modal .k-window-titlebar[b-g4xm8vping] {
        background-color: #f8f9fa;
        border-bottom: 1px solid #dee2e6;
        padding: 10px 15px;
        font-size: 16px;
    }

.device-detail-container[b-g4xm8vping] {
    padding: 0;
}


.detail-table[b-g4xm8vping] {
    width: 100%;
    border-collapse: collapse;
}

    .detail-table tr[b-g4xm8vping] {
        border-bottom: 1px solid #f0f0f0;
    }

        .detail-table tr:last-child[b-g4xm8vping] {
            border-bottom: none;
        }

.detail-label[b-g4xm8vping] {
    background-color: #0275d8;
    color: white;
    padding: 8px 12px;
    font-weight: 500;
    width: 40%;
}

.detail-value[b-g4xm8vping] {
    padding: 8px 12px;
    text-align: right;
}

    .detail-value .d-flex[b-g4xm8vping] {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        width: 100%;
    }

.device-detail-container .d-flex.justify-content-center[b-g4xm8vping] {
    display: flex;
    justify-content: flex-end !important; 
    padding: 12px 16px;
    margin-top: 12px;
}


.masked-key[b-g4xm8vping] {
    font-family: monospace;
    letter-spacing: 1px;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 80%;
}

.copy-btn[b-g4xm8vping] {
    padding: 2px 8px;
    font-size: 12px;
    white-space: nowrap;
    margin-left: auto; 
}
 
.active-status[b-g4xm8vping] {
    color: #28a745;
    font-weight: bold;
}

.inactive-status[b-g4xm8vping] {
    color: #dc3545;
    font-weight: bold;
}

.detail-footer[b-g4xm8vping] {
    padding: 12px 16px;
    margin-top: 12px;
    width: 100%;
}

 
.btn-outline-primary[b-g4xm8vping] {
    color: #0275d8;
    border-color: #0275d8;
}

    .btn-outline-primary:hover[b-g4xm8vping] {
        color: #fff;
        background-color: #0275d8;
        border-color: #0275d8;
    }


.MyTelerikNotification .k-notification-container[b-g4xm8vping] {
    font-size: 2em;  
}

.MyTelerikNotification .k-notification-content[b-g4xm8vping] {
    font-size: 2em;  
}

.toast-message[b-g4xm8vping] {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-size: 2em;  
}

    .toast-message.show[b-g4xm8vping] {
        opacity: 1;
        transform: translateY(0);
    }

 
.web-grid[b-g4xm8vping] {
    display: block;
}

.app-grid[b-g4xm8vping] {
    display: none;
}


@media (max-width: 767px) {
    .web-grid[b-g4xm8vping] {
        display: none;
    }

    .app-grid[b-g4xm8vping] {
        display: block;
    }
}
/* /Pages/LogManager.razor.rz.scp.css */
/* Layout compacto - Sin menú lateral */
.log-container[b-lyuhtnrb2m] {
    max-width: 100%;
    margin: 0;
    padding: 8px;
    width: 100vw;
    overflow-x: hidden;
}

/* Header compacto en una línea */
.header-compact[b-lyuhtnrb2m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #017DC0;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.title-section .main-title[b-lyuhtnrb2m] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.config-toggle .btn[b-lyuhtnrb2m] {
    color: white;
    border-color: rgba(255,255,255,0.3);
    font-size: 12px;
    padding: 4px 8px;
}

    .config-toggle .btn:hover[b-lyuhtnrb2m] {
        background-color: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.5);
        color: white;
    }

/* Controles principales horizontales */
.main-controls[b-lyuhtnrb2m] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.search-section[b-lyuhtnrb2m] {
    flex: 1;
    min-width: 300px;
}

.input-group-horizontal[b-lyuhtnrb2m] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .input-group-horizontal label[b-lyuhtnrb2m] {
        font-weight: 600;
        color: #333;
        white-space: nowrap;
        font-size: 14px;
    }

.form-control-compact[b-lyuhtnrb2m] {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 150px;
}

    .form-control-compact:focus[b-lyuhtnrb2m] {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
    }

.status-message[b-lyuhtnrb2m] {
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

    .status-message.alert-success[b-lyuhtnrb2m] {
        background-color: #d4edda;
        border: 1px solid #c3e6cb;
        color: #155724;
    }

    .status-message.alert-danger[b-lyuhtnrb2m] {
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        color: #721c24;
    }

/* Configuración expandida */
.config-expanded[b-lyuhtnrb2m] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
}

.config-row[b-lyuhtnrb2m] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: end;
    margin-bottom: 10px;
}

.config-group[b-lyuhtnrb2m] {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

    .config-group label[b-lyuhtnrb2m] {
        font-size: 12px;
        font-weight: 600;
        color: #555;
        margin-bottom: 3px;
    }

.form-select-compact[b-lyuhtnrb2m] {
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.config-actions[b-lyuhtnrb2m] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Sección de resultados */
.results-section[b-lyuhtnrb2m] {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.results-header-compact[b-lyuhtnrb2m] {
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.results-info h4[b-lyuhtnrb2m] {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.results-actions[b-lyuhtnrb2m] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Paginación compacta */
.pagination-compact[b-lyuhtnrb2m] {
    padding: 8px 15px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: #f8f9fa;
}

.pagination-info-compact[b-lyuhtnrb2m] {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.pagination-size-compact select[b-lyuhtnrb2m] {
    padding: 3px 6px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
}

.pagination-nav-compact[b-lyuhtnrb2m] {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.btn-xs[b-lyuhtnrb2m] {
    padding: 3px 6px;
    font-size: 11px;
    line-height: 1.2;
}

.page-indicator-compact[b-lyuhtnrb2m] {
    padding: 4px 8px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    color: #666;
}

/* Contenedor de logs */
.log-content-container[b-lyuhtnrb2m] {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    padding: 0 6px;
}

.log-html-container[b-lyuhtnrb2m] {
    width: 100%;
    height: calc(100vh - 250px);
    border: none;
    overflow: auto;
    background-color: #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 10;
}

.log-content-paginated[b-lyuhtnrb2m] {
    max-height: 70vh;
    overflow-y: auto;
}

.log-entry[b-lyuhtnrb2m] {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

    .log-entry:hover[b-lyuhtnrb2m] {
        background-color: #f8f9fa;
    }

    .log-entry:last-child[b-lyuhtnrb2m] {
        border-bottom: none;
    }

.log-entry-header[b-lyuhtnrb2m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.log-timestamp[b-lyuhtnrb2m] {
    font-size: 12px;
    color: #666;
    font-family: 'Courier New', monospace;
}

.log-level[b-lyuhtnrb2m] {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

    .log-level.info[b-lyuhtnrb2m] {
        background: #d1ecf1;
        color: #0c5460;
    }

    .log-level.warning[b-lyuhtnrb2m] {
        background: #fff3cd;
        color: #856404;
    }

    .log-level.error[b-lyuhtnrb2m] {
        background: #f8d7da;
        color: #721c24;
    }

    .log-level.debug[b-lyuhtnrb2m] {
        background: #e2e3e5;
        color: #383d41;
    }

.log-entry-content pre[b-lyuhtnrb2m] {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
}

.log-entry.error[b-lyuhtnrb2m] {
    border-left: 4px solid #dc3545;
    background-color: #fff5f5;
}

.log-entry.warning[b-lyuhtnrb2m] {
    border-left: 4px solid #ffc107;
    background-color: #fffbf3;
}

.log-entry.info[b-lyuhtnrb2m] {
    border-left: 4px solid #17a2b8;
    background-color: #f3f9fa;
}

/* RESPONSIVE: Ajustes para tablets y móviles */
@media (max-width: 900px) {
    .main-controls[b-lyuhtnrb2m] {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 8px 6px;
    }

    .results-header-compact[b-lyuhtnrb2m],
    .pagination-compact[b-lyuhtnrb2m] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px 8px;
    }
}

@media (max-width: 768px) {
    .header-compact[b-lyuhtnrb2m] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px 6px;
    }

    .main-controls[b-lyuhtnrb2m] {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 8px 2px;
    }

    .input-group-horizontal[b-lyuhtnrb2m] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-section[b-lyuhtnrb2m] {
        min-width: unset;
        width: 100%;
    }

    .results-header-compact[b-lyuhtnrb2m],
    .pagination-compact[b-lyuhtnrb2m] {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 5px;
    }

    .results-section[b-lyuhtnrb2m] {
        padding: 2px;
    }

    .log-content-container[b-lyuhtnrb2m] {
        max-height: 300px;
        padding: 0 2px;
    }
}

@media (max-width: 500px) {
    .main-controls[b-lyuhtnrb2m],
    .results-header-compact[b-lyuhtnrb2m],
    .pagination-compact[b-lyuhtnrb2m] {
        padding: 4px 2px;
        gap: 5px;
    }

    .header-compact[b-lyuhtnrb2m] {
        padding: 5px 2px;
        gap: 5px;
    }

    .title-section .main-title[b-lyuhtnrb2m] {
        font-size: 15px;
    }

    .form-control-compact[b-lyuhtnrb2m],
    .form-select-compact[b-lyuhtnrb2m] {
        font-size: 12px;
        min-width: 80px;
        padding: 5px 6px;
    }
}
/* /Pages/PasswordRecovey/PaswordRecovery.razor.rz.scp.css */

.password-recovery-container[b-qs22885ni3] {
    min-height: 100vh;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.recovery-card[b-qs22885ni3] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(66, 66, 66, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    animation: slideIn 0.4s ease-out;
    border: 1px solid #e0e0e0;
}

.recovery-header[b-qs22885ni3] {
    background: linear-gradient(135deg, #017DC0 0%, #015b8e 100%);
    color: white;
    padding: 20px 24px;
    text-align: center;
}
    .recovery-header h1[b-qs22885ni3] {
        margin: 0 0 4px 0;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .recovery-header p[b-qs22885ni3] {
        margin: 0;
        opacity: 0.95;
        font-size: 0.95rem;
    }

.recovery-content[b-qs22885ni3] {
    padding: 16px 20px;
    background: #ffffff;
}

.welcome-message[b-qs22885ni3] {
    margin-bottom: 10px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #eeeeee;
}

    .welcome-message h2[b-qs22885ni3] {
        color: #424242;
        font-size: 1.2rem;
        margin: 0 0 3px 0;
        font-weight: 600;
    }

    .welcome-message p[b-qs22885ni3] {
        color: #424242;
        margin: 0;
        line-height: 1.4;
        font-size: 0.9rem;
    }

.password-requirements[b-qs22885ni3] {
    background: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    padding: 4px 8px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #424242;
}

    .password-requirements strong[b-qs22885ni3] {
        display: block;
        margin-bottom: 4px;
    }

    .password-requirements ul[b-qs22885ni3] {
        margin: 0;
        padding-left: 16px;
        list-style-type: none;
    }

    .password-requirements li[b-qs22885ni3] {
        margin-bottom: 2px;
        position: relative;
        padding-left: 20px;
    }

        .password-requirements li[b-qs22885ni3]::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #48bb78;
            font-weight: bold;
        }

.form-group[b-qs22885ni3] {
    margin-bottom: 12px;
    position: relative;
}

.form-label[b-qs22885ni3] {
    display: block;
    margin-bottom: 4px;
    color: #424242;
    font-weight: 600;
    font-size: 0.95rem;
}

[b-qs22885ni3] .form-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    background: white;
    color: #424242;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(66, 66, 66, 0.04);
}

.success-actions[b-qs22885ni3] {
    margin-top: 12px;
}

.btn-login[b-qs22885ni3] {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .btn-login:hover[b-qs22885ni3] {
        background-color: #0056b3;
        text-decoration: none;
        color: white;
    }

    [b-qs22885ni3] .form-input:focus {
        outline: none;
        border-color: #017DC0;
        background: white;
        box-shadow: 0 0 0 4px rgba(1, 125, 192, 0.12), 0 8px 25px rgba(1, 125, 192, 0.15);
        transform: translateY(-1px);
    }

    [b-qs22885ni3] .form-input:hover:not(:focus) {
        border-color: #bdbdbd;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(66, 66, 66, 0.06);
    }

    [b-qs22885ni3] .form-input::placeholder {
        color: #9e9e9e;
        font-weight: 400;
    }
.reset-button[b-qs22885ni3] {
    width: 100%;
    background: linear-gradient(135deg, #017DC0 0%, #015b8e 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(1, 125, 192, 0.3);
}

    .reset-button:hover[b-qs22885ni3] {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(1, 125, 192, 0.4);
    }

    .reset-button:disabled[b-qs22885ni3] {
        background: #bdbdbd;
        cursor: not-allowed;
        transform: none;
        box-shadow: 0 4px 12px rgba(66, 66, 66, 0.1);
    }

.success-message[b-qs22885ni3] {
    text-align: center;
    padding: 20px;
}

.success-icon[b-qs22885ni3] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

.success-text[b-qs22885ni3] {
    color: #48bb78;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.success-description[b-qs22885ni3] {
    color: #424242;
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.error-message[b-qs22885ni3], .validation-errors[b-qs22885ni3] {
    background: #fde8e8;
    border: 1px solid #fc8181;
    border-radius: 10px;
    padding: 10px 14px;
    color: #c53030;
    font-size: 0.9rem;
}

.error-message[b-qs22885ni3] {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.validation-errors[b-qs22885ni3] {
    margin-bottom: 12px;
}

    .validation-errors:not(:empty)[b-qs22885ni3] {
        display: block;
    }

    .validation-errors ul[b-qs22885ni3] {
        margin: 0;
        padding-left: 20px;
        list-style-type: disc;
    }

.info-banner[b-qs22885ni3] {
    background: #fffaf0;
    border: 1px solid #f6ad55;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    color: #c05621;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon[b-qs22885ni3] {
    flex-shrink: 0;
    font-size: 1.1rem;
}
/* /Pages/pdfGenerator.razor.rz.scp.css */
/******************************LOGIN******************************/
/*.loginform {
    background: white;
    border-radius: 20px;
    padding: 2rem 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/ /* Sombra visible alrededor del formulario */
    /*display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
    max-height: 100%;
}

    .loginform input {
        border: 1px solid #eeeeee;
        border-radius: 4px;
        padding: 0.5rem;
        margin-bottom: 1rem;
        outline: none;
    }

        .loginform input:focus {
            border-color: #017DC0;
            box-shadow: 0 0 4px rgba(1, 125, 192, 0.3);
        }


.login .btn-primary {
    color: #fff;
    background-color: #017DC0;
    border: none;
    width: 100%;
}

    .login .btn-primary:hover {
        background-color: #0a58ca;
    }

    .login .btn-primary:focus {
        box-shadow: none;
    }

.login .k-item.k-active {
    display: none;
}

.login img {
    max-width: 300px;
    margin: 20px auto;
}

.login .row {
    max-width: 1270px;
    align-items: center;
}

.login .col-lg-7 {
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    padding: 0 10rem 6rem 0;
    text-align: center;
}

@media (max-width: 1000px) {
    .form__container {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

    .login .col-lg-7 {
        padding: 0;
    }

    .container__logo {
        padding: 0;
    }

    .login .loginform {
        width: 75%;
        margin-top: 5rem;
    }

    .background-img {
        align-items: stretch;
    }
}

.dual-ring-spinner {
    display: inline-block;
    width: 64px;
    height: 64px;
}

    .dual-ring-spinner:after {
        content: " ";
        display: block;
        width: 46px;
        height: 46px;
        margin: 1px;
        border-radius: 50%;
        border: 5px solid #007bff;
        border-color: #007bff transparent #007bff transparent;
        animation: dual-ring-spin 1.2s linear infinite;
    }

@keyframes dual-ring-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/
/******************************LOGIN******************************/
/* /Pages/PrivacyPolicy.razor.rz.scp.css */
/* ===== Privacy & Terms shared document styles (scoped) ===== */

.legal-document[b-1k3gh5sizi] {
    background: #ffffff;
    border-radius: 0.85rem;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
    padding: 2.5rem 2.75rem;
    line-height: 1.65;
    color: #1e293b;
}

.legal-document__header[b-1k3gh5sizi] {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.legal-document__header h1[b-1k3gh5sizi] {
    font-size: 2rem;
    margin: 0 0 0.5rem;
    color: #0f172a;
    font-weight: 700;
}

.legal-document__updated[b-1k3gh5sizi] {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0 0 0.85rem;
    font-style: italic;
}

.legal-document__intro[b-1k3gh5sizi] {
    font-size: 1rem;
    color: #334155;
    margin: 0;
}

.legal-document section[b-1k3gh5sizi] {
    margin-top: 1.5rem;
}

.legal-document section:first-of-type[b-1k3gh5sizi] {
    margin-top: 1rem;
}

.legal-document h2[b-1k3gh5sizi] {
    font-size: 1.25rem;
    color: #017DC0;
    margin: 0 0 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.legal-document h3[b-1k3gh5sizi] {
    font-size: 1rem;
    color: #0f172a;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.legal-document p[b-1k3gh5sizi] {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #334155;
}

.legal-document ul[b-1k3gh5sizi] {
    margin: 0.25rem 0 0.75rem;
    padding-left: 1.4rem;
}

.legal-document li[b-1k3gh5sizi] {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: #334155;
}

.legal-document strong[b-1k3gh5sizi] {
    color: #0f172a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-document[b-1k3gh5sizi] {
        padding: 1.5rem 1.25rem;
        border-radius: 0.6rem;
    }

    .legal-document__header h1[b-1k3gh5sizi] {
        font-size: 1.5rem;
    }

    .legal-document h2[b-1k3gh5sizi] {
        font-size: 1.1rem;
    }
}
/* /Pages/Profile/Profile.razor.rz.scp.css */
/* /Pages/Profile/Views/ProfileView.razor.rz.scp.css */
/* =================== PARTES BÁSICAS (sin cambiar) =================== */
/* Reset previo */
.profile__container[b-em71mo1q1z] {
    display: none;
}

/* Main Profile Container: aprovechamos hasta 1600px */
.profile-page[b-em71mo1q1z] {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
    font-family: 'League Spartan', sans-serif;
}

/* Profile Header - SIN margin-top por defecto */
.profile-header[b-em71mo1q1z] {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--blue) 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    color: white;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(1, 125, 192, 0.15);
    position: relative;
    overflow: hidden;
}

    .profile-header[b-em71mo1q1z]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 1;
    }

.profile-avatar[b-em71mo1q1z] {
    position: relative;
    z-index: 2;
}

    .profile-avatar .avatar-circle[b-em71mo1q1z] {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        font-weight: bold;
        border: 4px solid rgba(255, 255, 255, 0.3);
        color: white;
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease;
    }

        .profile-avatar .avatar-circle:hover[b-em71mo1q1z] {
            transform: scale(1.05);
        }

.profile-info[b-em71mo1q1z] {
    position: relative;
    z-index: 2;
}

    .profile-info .profile-name[b-em71mo1q1z] {
        margin: 0 0 0.75rem 0;
        font-size: 2.2rem;
        font-weight: 700;
        color: white;
        line-height: 1.2;
    }

    .profile-info .profile-email[b-em71mo1q1z] {
        margin: 0 0 1rem 0;
        opacity: 0.95;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 400;
    }

    .profile-info .profile-role[b-em71mo1q1z] {
        background: rgba(255, 255, 255, 0.25);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.95rem;
        font-weight: 600;
        display: inline-block;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

/* Profile Content Layout */
.profile-content[b-em71mo1q1z] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ==================== CONTROL DE GRILLAS RESPONSIVE ==================== */
/* Por defecto: mostrar web-grid en pantallas grandes, ocultar app-grid */
.web-grid[b-em71mo1q1z] {
    display: block;
    width: 100%;
}

.app-grid[b-em71mo1q1z] {
    display: none;
}

/* ==================== GRILLA PRINCIPAL: 3 → 2 → 1 columnas ==================== */
/* DESKTOP: 3 columnas (pantallas grandes) */
.main-sections-container[b-em71mo1q1z] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

    /* ==================== FORZAR QUE CADA TARJETA OCUPE EL 100% DE SU CELDA ==================== */
    .main-sections-container .profile-section[b-em71mo1q1z] {
        width: 100% !important;
        box-sizing: border-box;
        max-width: 100%;
    }

/* Cada tarjeta siempre ocupa 100% de la celda */
.profile-section[b-em71mo1q1z] {
    width: 100% !important;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(233, 236, 239, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: fit-content;
    box-sizing: border-box;
    max-width: 100%;
}

    .profile-section:hover[b-em71mo1q1z] {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .profile-section[b-em71mo1q1z]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--light-blue), var(--blue));
    }

    /* Account actions ya no está en la grilla principal - está en el footer */

/* Section Headers */
.section-header[b-em71mo1q1z] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--light-blue);
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

    .section-header iconify-icon[b-em71mo1q1z] {
        font-size: 1.8rem;
        color: var(--light-blue);
        padding: 0.5rem;
        background: rgba(1, 125, 192, 0.1);
        border-radius: 12px;
    }

    .section-header h3[b-em71mo1q1z] {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--gray);
        padding: 0;
    }

/* Info Grid - RESPONSIVO */
.info-grid[b-em71mo1q1z] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-item[b-em71mo1q1z] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

    .info-item:hover[b-em71mo1q1z] {
        background: #f0f8ff;
        border-color: var(--light-blue);
    }

    .info-item label[b-em71mo1q1z] {
        font-weight: 700;
        color: var(--gray);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin: 0;
    }

    .info-item span[b-em71mo1q1z] {
        color: var(--text);
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.4;
    }

/* Status Classes */
.status-active[b-em71mo1q1z] {
    color: var(--success-color) !important;
    font-weight: 700;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.status-inactive[b-em71mo1q1z] {
    color: var(--error-color) !important;
    font-weight: 700;
    background: rgba(220, 53, 69, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.status-blocked[b-em71mo1q1z] {
    color: var(--error-color) !important;
    font-weight: 700;
    background: rgba(220, 53, 69, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.status-secure[b-em71mo1q1z] {
    color: var(--success-color) !important;
    font-weight: 700;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.status-warning[b-em71mo1q1z] {
    color: var(--alert-color) !important;
    font-weight: 700;
    background: rgba(255, 193, 7, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

/* Form Styles */
.form-field[b-em71mo1q1z] {
    margin-bottom: 1.5rem;
}

.field-label[b-em71mo1q1z] {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--gray);
    font-size: 1rem;
}

.profile-input[b-em71mo1q1z] {
    width: 100% !important;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'League Spartan', sans-serif;
    background: #fafbfc;
}

    .profile-input:focus[b-em71mo1q1z] {
        border-color: var(--light-blue);
        box-shadow: 0 0 0 4px rgba(1, 125, 192, 0.1);
        outline: none;
        background: white;
    }

.form-actions[b-em71mo1q1z] {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* Profile Footer - Acciones de la cuenta como footer */
.profile-footer[b-em71mo1q1z] {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0 0 16px 16px;
}

.profile-footer .profile-section[b-em71mo1q1z] {
    margin: 0 auto;
    max-width: 1600px;
    box-shadow: none;
    border: none;
    background: transparent;
}

.profile-footer .section-header[b-em71mo1q1z] {
    justify-content: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.profile-footer .section-header h3[b-em71mo1q1z] {
    font-size: 1.6rem;
    color: var(--gray);
}

/* Actions Section Container - Mantener para compatibilidad */
.actions-section-container[b-em71mo1q1z] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Actions Grid - RESPONSIVO */
.actions-grid[b-em71mo1q1z] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.action-item[b-em71mo1q1z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fafbfc;
    position: relative;
    overflow: hidden;
}

    .action-item[b-em71mo1q1z]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--light-blue);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .action-item:hover[b-em71mo1q1z] {
        border-color: var(--light-blue);
        background: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

        .action-item:hover[b-em71mo1q1z]::before {
            transform: scaleY(1);
        }

.logout-item[b-em71mo1q1z] {
    border-color: var(--error-color);
    background: #fff8f8;
}

    .logout-item[b-em71mo1q1z]::before {
        background: var(--error-color);
    }

    .logout-item:hover[b-em71mo1q1z] {
        border-color: #c82333;
        background: white;
    }

.action-info h4[b-em71mo1q1z] {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray);
}

.action-info p[b-em71mo1q1z] {
    margin: 0;
    color: var(--gray);
    font-size: 1rem;
    opacity: 0.8;
}

.btn-secondary[b-em71mo1q1z] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--gray);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-secondary:hover[b-em71mo1q1z] {
        background: #5a6268;
        transform: translateY(-1px);
    }

.btn-logout[b-em71mo1q1z] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--error-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-logout:hover[b-em71mo1q1z] {
        background: #c82333;
        transform: translateY(-1px);
    }

/* Loading States */
.profile-section.loading[b-em71mo1q1z] {
    position: relative;
    opacity: 0.7;
    pointer-events: none;
}

    .profile-section.loading[b-em71mo1q1z]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 16px;
        z-index: 10;
    }

/* =================== BREAKPOINTS RESPONSIVE =================== */

/* =================== DESKTOP GRANDE (>=1301px): 3 COLUMNAS =================== */
@media (min-width: 1301px) {
    .web-grid[b-em71mo1q1z] {
        display: block !important;
    }

    .app-grid[b-em71mo1q1z] {
        display: none !important;
    }

    .main-sections-container[b-em71mo1q1z] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
    }

    .profile-section.personal-info[b-em71mo1q1z] {
        grid-column: 1;
    }

    .profile-section.security-info[b-em71mo1q1z] {
        grid-column: 2;
    }

    .profile-section.password-change[b-em71mo1q1z] {
        grid-column: 3;
    }

    .profile-section.account-actions[b-em71mo1q1z] {
        grid-column: 1 / -1 !important;
    }
}

/* =================== DESKTOP MEDIANO (1300px-901px): 2 COLUMNAS =================== */
@media (max-width: 1300px) and (min-width: 901px) {
    .web-grid[b-em71mo1q1z] {
        display: block !important;
    }

    .app-grid[b-em71mo1q1z] {
        display: none !important;
    }

    .main-sections-container[b-em71mo1q1z] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .profile-page[b-em71mo1q1z] {
        padding: 1.5rem;
    }

    .profile-header[b-em71mo1q1z] {
        padding: 2.5rem 1.5rem;
    }

    .profile-section.personal-info[b-em71mo1q1z] {
        grid-column: 1;
    }

    .profile-section.security-info[b-em71mo1q1z] {
        grid-column: 2;
    }

    .profile-section.password-change[b-em71mo1q1z] {
        grid-column: 1;
    }

    .profile-section.account-actions[b-em71mo1q1z] {
        grid-column: 1 / -1 !important;
    }
}

/* =================== TABLETS (900px-769px): 2 COLUMNAS CON APP-GRID =================== */
@media (max-width: 900px) and (min-width: 769px) {
    .web-grid[b-em71mo1q1z] {
        display: none !important;
    }

    .app-grid[b-em71mo1q1z] {
        display: block !important;
        width: 100%;
    }

    .main-sections-container[b-em71mo1q1z] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .profile-page[b-em71mo1q1z] {
        padding: 1.5rem;
        max-width: 100%;
    }

    .profile-header[b-em71mo1q1z] {
        padding: 2rem 1.5rem;
    }

    .profile-avatar .avatar-circle[b-em71mo1q1z] {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .profile-info .profile-name[b-em71mo1q1z] {
        font-size: 2rem;
    }

    /* Asegurar que actions grid sea responsive en tablets */
    .actions-grid[b-em71mo1q1z] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

/* =================== MÓVILES (768px y menor): SIEMPRE 1 COLUMNA =================== */
@media (max-width: 768px) {
    /* CONTROLES DE GRILLA */
    .web-grid[b-em71mo1q1z] {
        display: none !important;
    }

    .app-grid[b-em71mo1q1z] {
        display: block !important;
        width: 100%;
    }

    /* FORZAR 1 COLUMNA EN TODAS LAS GRILLAS PRINCIPALES */
    .main-sections-container[b-em71mo1q1z] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .actions-section-container[b-em71mo1q1z] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .actions-grid[b-em71mo1q1z] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .info-grid[b-em71mo1q1z] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    /* TODAS LAS SECCIONES EN UNA COLUMNA */
    .profile-section.personal-info[b-em71mo1q1z],
    .profile-section.security-info[b-em71mo1q1z],
    .profile-section.password-change[b-em71mo1q1z],
    .profile-section.plan-info[b-em71mo1q1z],
    .profile-section.subscription-info[b-em71mo1q1z] {
        grid-column: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* AJUSTAR HEADER PARA MÓVILES - CON ESPACIO ARRIBA */
    .profile-header[b-em71mo1q1z] {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
        margin-top: 3rem; /* ← SOLO EN MÓVILES */
    }

    .profile-avatar .avatar-circle[b-em71mo1q1z] {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
        margin: 0 auto;
    }

    .profile-info .profile-name[b-em71mo1q1z] {
        font-size: 1.8rem;
    }

    .profile-info .profile-email[b-em71mo1q1z] {
        font-size: 1.1rem;
    }

    /* AJUSTAR SECCIONES PARA MÓVILES */
    .profile-section[b-em71mo1q1z] {
        padding: 1.5rem;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-header[b-em71mo1q1z] {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    /* AJUSTAR ACTION ITEMS PARA MÓVILES */
    .action-item[b-em71mo1q1z] {
        flex-direction: column !important;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
        width: 100% !important;
    }

    /* AJUSTAR FORMULARIOS PARA MÓVILES */
    .form-actions[b-em71mo1q1z] {
        justify-content: center;
    }

    .btn-update-password[b-em71mo1q1z],
    .btn-secondary[b-em71mo1q1z],
    .btn-logout[b-em71mo1q1z] {
        width: 100% !important;
        justify-content: center;
        padding: 1rem;
    }

    /* AJUSTAR GRILLAS DE TELERIK PARA MÓVILES */
    .app-grid .k-grid-toolbar[b-em71mo1q1z] {
        flex-direction: column !important;
        gap: 0.5rem;
        padding: 1rem;
    }

        .app-grid .k-grid-toolbar .k-button[b-em71mo1q1z] {
            width: 100% !important;
            justify-content: center;
        }
}

/* =================== MÓVILES PEQUEÑOS (480px y menor): AJUSTES ADICIONALES =================== */
@media (max-width: 480px) {
    .profile-page[b-em71mo1q1z] {
        padding: 1rem;
    }

    .profile-header[b-em71mo1q1z] {
        padding: 1.5rem 1rem;
        margin-top: 3rem; /* ← TAMBIÉN EN MÓVILES PEQUEÑOS */
    }

    .profile-section[b-em71mo1q1z] {
        padding: 1rem;
        width: 100% !important;
        max-width: 100% !important;
    }

    .action-item[b-em71mo1q1z] {
        padding: 1rem;
        width: 100% !important;
    }

    .info-item[b-em71mo1q1z] {
        padding: 1rem;
    }

    /* Asegurar que las grillas de Telerik sean completamente responsivas */
    .app-grid .k-grid[b-em71mo1q1z] {
        font-size: 0.9rem;
        width: 100% !important;
        max-width: 100% !important;
    }

    .app-grid .k-grid-toolbar[b-em71mo1q1z] {
        padding: 0.5rem;
    }

    /* Forzar elementos de form a ocupar todo el ancho */
    .profile-input[b-em71mo1q1z],
    .k-textbox[b-em71mo1q1z],
    .k-input[b-em71mo1q1z] {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* =================== TAMAÑOS MUY GRANDES (>=1600px) =================== */
@media (min-width: 1600px) {
    .profile-page[b-em71mo1q1z] {
        max-width: 1800px;
    }

    .profile-avatar .avatar-circle[b-em71mo1q1z] {
        width: 140px;
        height: 140px;
        font-size: 3rem;
    }

    .profile-info .profile-name[b-em71mo1q1z] {
        font-size: 2.8rem;
    }

    .profile-info .profile-email[b-em71mo1q1z] {
        font-size: 1.4rem;
    }

    .profile-header[b-em71mo1q1z] {
        padding: 4rem 3rem;
    }
}

/* =================== MEJORAS ADICIONALES =================== */
/* Asegurar que no haya scroll horizontal innecesario */
*[b-em71mo1q1z] {
    box-sizing: border-box;
}

.profile-page[b-em71mo1q1z],
.profile-page *[b-em71mo1q1z] {
    max-width: 100%;
    overflow-x: hidden;
}

/* Mejorar el espaciado en dispositivos táctiles */
@media (pointer: coarse) {
    .k-grid .k-command-button[b-em71mo1q1z] {
        padding: 0.75rem;
        min-height: 44px;
        min-width: 44px;
    }
}

/* =================== INTEGRACIÓN CON TELERIK =================== */
.profile-section .k-form[b-em71mo1q1z] {
    width: 100%;
}

.profile-section .k-textbox[b-em71mo1q1z],
.profile-section .k-input[b-em71mo1q1z] {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    font-family: 'League Spartan', sans-serif;
}

    .profile-section .k-textbox:focus[b-em71mo1q1z],
    .profile-section .k-input:focus[b-em71mo1q1z] {
        border-color: var(--light-blue);
        box-shadow: 0 0 0 4px rgba(1, 125, 192, 0.1);
    }

.profile-section .k-button[b-em71mo1q1z] {
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* =================== BADGE DEL PLAN EN HEADER =================== */
.plan-badge[b-em71mo1q1z] {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.plan-badge:hover[b-em71mo1q1z] {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.plan-name[b-em71mo1q1z] {
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
}

.star-icon[b-em71mo1q1z] {
    color: white;
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* =================== MEJORAS DE LAYOUT PARA WEB =================== */
/* Mejorar distribución para pantallas grandes */
@media (min-width: 1301px) {
    .main-sections-container[b-em71mo1q1z] {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 2.5rem;
        max-width: 1600px;
        margin: 0 auto;
    }

    /* Grid layout for 3 columns */
    .profile-section.personal-info[b-em71mo1q1z] {
        grid-column: 1;
        grid-row: 1;
    }

    .profile-section.security-info[b-em71mo1q1z] {
        grid-column: 2;
        grid-row: 1;
    }

    .profile-section.password-change[b-em71mo1q1z] {
        grid-column: 3;
        grid-row: 1;
    }
    
    .profile-section.plan-info[b-em71mo1q1z] {
        grid-column: 1;
        grid-row: 2;
    }
    
    .profile-section.subscription-info[b-em71mo1q1z] {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 1300px) and (min-width: 901px) {
    .main-sections-container[b-em71mo1q1z] {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem;
    }

    /* Reorganizar para 2 columnas */
    .profile-section.personal-info[b-em71mo1q1z] {
        grid-column: 1;
        grid-row: 1;
    }

    .profile-section.security-info[b-em71mo1q1z] {
        grid-column: 2;
        grid-row: 1;
    }

    .profile-section.plan-info[b-em71mo1q1z] {
        grid-column: 1;
        grid-row: 2;
    }

    .profile-section.password-change[b-em71mo1q1z] {
        grid-column: 2;
        grid-row: 2;
    }
    
    .profile-section.subscription-info[b-em71mo1q1z] {
        grid-column: 1;
        grid-row: 3;
        grid-column-end: 3; /* Span across both columns */
    }
}

/* Mejorar el espaciado y distribución de elementos */
@media (min-width: 769px) {
    .profile-header[b-em71mo1q1z] {
        max-width: 1600px;
        margin: 0 auto 3rem auto;
    }

    .profile-content[b-em71mo1q1z] {
        max-width: 1600px;
        margin: 0 auto;
    }

    .actions-section-container[b-em71mo1q1z] {
        max-width: 1600px;
        margin: 0 auto;
    }

    /* Mejorar la distribución de las tarjetas de información */
    .info-grid[b-em71mo1q1z] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    /* Mejorar las acciones para pantallas grandes */
    .actions-grid[b-em71mo1q1z] {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

/* Ajustar plan badge para tablets */
@media (max-width: 768px) {
    .plan-badge[b-em71mo1q1z] {
        bottom: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        gap: 0.4rem;
    }
    
    .plan-name[b-em71mo1q1z] {
        font-size: 0.75rem;
    }

    .star-icon[b-em71mo1q1z] {
        font-size: 0.8rem;
    }
}

/* Ajustar plan badge para móviles */
@media (max-width: 480px) {
    .plan-badge[b-em71mo1q1z] {
        bottom: 0.75rem;
        right: 0.75rem;
        padding: 0.3rem 0.6rem;
        gap: 0.3rem;
    }
    
    .plan-name[b-em71mo1q1z] {
        font-size: 0.7rem;
    }

    .star-icon[b-em71mo1q1z] {
        font-size: 0.7rem;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    .profile-footer[b-em71mo1q1z] {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .profile-footer .section-header h3[b-em71mo1q1z] {
        font-size: 1.4rem;
    }
    
    .profile-footer .actions-grid[b-em71mo1q1z] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .profile-footer[b-em71mo1q1z] {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-radius: 0;
    }
    
    .profile-footer .section-header[b-em71mo1q1z] {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .profile-footer .section-header h3[b-em71mo1q1z] {
        font-size: 1.2rem;
    }
}

/* Status info class for plan information */
.status-info[b-em71mo1q1z] {
    color: var(--light-blue) !important;
    font-weight: 700;
    background: rgba(1, 125, 192, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

/* =================== SUBSCRIPTION STATUS STYLES =================== */
.subscription-info .info-item.full-width[b-em71mo1q1z] {
    grid-column: 1 / -1;
}

.progress-container[b-em71mo1q1z] {
    width: 100%;
}

.status-expired[b-em71mo1q1z] {
    color: #dc3545;
    font-weight: bold;
}

.subscription-info .alert[b-em71mo1q1z] {
    font-size: 0.875rem;
}

.subscription-info .section-header iconify-icon[b-em71mo1q1z] {
    font-size: 1.2rem;
}

/* =================== COLLAPSIBLE SECTIONS STYLES =================== */
.collapsible-section[b-em71mo1q1z] {
    overflow: hidden;
}

.collapsible-header[b-em71mo1q1z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0.75rem;
    margin: -0.75rem;
    border-radius: 0.375rem;
}

.collapsible-header:hover[b-em71mo1q1z] {
    background-color: rgba(0, 0, 0, 0.05);
}

.header-content[b-em71mo1q1z] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.collapse-icon[b-em71mo1q1z] {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
    color: #6c757d;
}

.info-grid.collapsed[b-em71mo1q1z] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 0;
}

.info-grid.expanded[b-em71mo1q1z] {
    max-height: 1000px;
    transition: max-height 0.3s ease-in;
    margin-top: 1rem;
}

/* Password form container collapsible styles */
.password-form-container.collapsed[b-em71mo1q1z] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 0;
}

.password-form-container.expanded[b-em71mo1q1z] {
    max-height: 800px;
    transition: max-height 0.3s ease-in;
    margin-top: 1rem;
}

/* Override status-warning to use proper color variable */
.status-warning[b-em71mo1q1z] {
    color: #fd7e14 !important;
    font-weight: bold;
    background: rgba(253, 126, 20, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

/* Hide collapsible functionality on mobile */
@media (max-width: 768px) {
    .collapsible-header[b-em71mo1q1z] {
        cursor: default;
        pointer-events: none;
    }
    
    .collapse-icon[b-em71mo1q1z] {
        display: none;
    }
    
    .info-grid[b-em71mo1q1z],
    .password-form-container[b-em71mo1q1z] {
        max-height: none !important;
        margin-top: 1rem !important;
    }
}

/* Show collapsible on tablets and iPads */
@media (min-width: 769px) and (max-width: 1024px) {
    .collapsible-header[b-em71mo1q1z] {
        cursor: pointer;
        pointer-events: auto;
    }
    
    .collapse-icon[b-em71mo1q1z] {
        display: block;
    }
}

/* Enhanced collapsible functionality for desktop */
@media (min-width: 1025px) {
    .collapsible-header[b-em71mo1q1z] {
        cursor: pointer;
        pointer-events: auto;
    }
    
    .collapse-icon[b-em71mo1q1z] {
        display: block;
    }
    
    .collapsible-header:hover .collapse-icon[b-em71mo1q1z] {
        transform: scale(1.1);
    }
    
    /* Smooth animations for desktop */
    .info-grid.collapsed[b-em71mo1q1z],
    .password-form-container.collapsed[b-em71mo1q1z] {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .info-grid.expanded[b-em71mo1q1z],
    .password-form-container.expanded[b-em71mo1q1z] {
        opacity: 1;
        transform: translateY(0);
    }
    
    .info-grid[b-em71mo1q1z],
    .password-form-container[b-em71mo1q1z] {
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }
}

/* =================== ACCESIBILIDAD =================== */
/* Reducir animaciones si "prefers-reduced-motion" */
@media (prefers-reduced-motion: reduce) {
    .profile-section[b-em71mo1q1z],
    .action-item[b-em71mo1q1z],
    .btn-update-password[b-em71mo1q1z],
    .btn-secondary[b-em71mo1q1z],
    .btn-logout[b-em71mo1q1z],
    .profile-avatar .avatar-circle[b-em71mo1q1z],
    .plan-badge[b-em71mo1q1z],
    .collapsible-header[b-em71mo1q1z],
    .collapse-icon[b-em71mo1q1z],
    .info-grid[b-em71mo1q1z],
    .password-form-container[b-em71mo1q1z] {
        transition: none;
    }
}

/* Modo alto contraste */
@media (prefers-contrast: high) {
    .profile-section[b-em71mo1q1z] {
        border: 2px solid #000;
    }

    .info-item[b-em71mo1q1z] {
        border: 1px solid #000;
    }

    .action-item[b-em71mo1q1z] {
        border: 2px solid #000;
    }

    .plan-badge[b-em71mo1q1z] {
        border: 2px solid #fff;
        background: #000;
    }

    .plan-name[b-em71mo1q1z] {
        color: #fff;
    }

    .star-icon[b-em71mo1q1z] {
        color: #fff;
    }
}
/* /Pages/Security/CodeManager.razor.rz.scp.css */
/* /Pages/Security/CreateProfile.razor.rz.scp.css */
/* /Pages/Security/Index.razor.rz.scp.css */
/* /Pages/Security/LogAudit.razor.rz.scp.css */
/* /Pages/Security/RolesPermissions.razor.rz.scp.css */
/* /Pages/Security/Views/LegalEntityView.razor.rz.scp.css */
[b-zv78nmepui] .user-detail-modal .k-window-content {
    padding: 0;
}

[b-zv78nmepui] .user-detail-container {
    padding: 5px;
    max-height: 70vh;
    overflow-y: auto;
}

[b-zv78nmepui] .detail-section {
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

[b-zv78nmepui] .section-header {
    background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

[b-zv78nmepui] .section-icon {
    color: #017DC0;
    margin-right: 10px;
}

[b-zv78nmepui] .section-title {
    margin: 0;
    color: #105880;
    font-size: 1.1rem;
    font-weight: 600;
}

[b-zv78nmepui] .section-content {
    padding: 3px;
    background: #fff;
}

[b-zv78nmepui] .info-item {
    margin-bottom: 15px;
}

    [b-zv78nmepui] .info-item:last-child {
        margin-bottom: 0;
    }

[b-zv78nmepui] .info-label {
    display: block;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

[b-zv78nmepui] .info-value {
    display: block;
    color: black;
    font-size: 1.1rem;
    word-break: break-word;
}

[b-zv78nmepui] .role-badge, [b-zv78nmepui] .group-badge {
    display: inline-flex;
    align-items: center;
    background: #e3f2fd;
    color: #424242;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 3px;
    border: 1px solid #bbdefb;
}

[b-zv78nmepui] .group-badge {
    background: #c8dff2;
    color: #105880;
    border-color: #73b3f1;
}

    [b-zv78nmepui] .role-badge .k-svg-icon, [b-zv78nmepui] .group-badge .k-svg-icon {
        margin-right: 5px;
    }

[b-zv78nmepui] .roles-container, [b-zv78nmepui] .groups-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
}

[b-zv78nmepui] .small {
    font-size: 0.8rem;
    font-family: monospace;
}

[b-zv78nmepui] .role-item, [b-zv78nmepui] .integration-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f5f5f5;
    transition: all 0.2s ease;
    color: #105880 !important;
}

    [b-zv78nmepui] .role-item:hover, [b-zv78nmepui] .integration-item:hover {
        background-color: #ececec;
    }

[b-zv78nmepui] .disabled-role, [b-zv78nmepui] .disabled-integration {
    opacity: 0.5;
    pointer-events: none;
    background-color: #f9f9f9;
    color: #999;
}

[b-zv78nmepui] .exclusive-badge {
    background: linear-gradient(135deg,#e0d8d8,#d5cfcf);
    color: #946045 !important;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(208,198,198,0.3);
}

[b-zv78nmepui] .role-item.exclusive:hover, [b-zv78nmepui] .integration-item.exclusive:hover {
    background: linear-gradient(135deg,#ececec,#e6e6e6);
    border-left: 4px solid #d5cfcf;
}

[b-zv78nmepui] .alert-info {
    background-color: #e3f2fd;
    border: 1px solid #2196f3;
    color: #105880;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
}

[b-zv78nmepui] .k-multiselect .k-multiselect-taglist .k-tag {
    position: relative;
    background: #ececec;
    border-color: #d5d5d5;
    color: #105880 !important;
}

[b-zv78nmepui] .k-multiselect .k-tag.exclusive-role {
    background: #e0d8d8;
    border-color: #cfc5c5;
    color: #105880 !important;
}

    [b-zv78nmepui] .k-multiselect .k-tag.exclusive-role::after {
        content: "⚡";
        position: absolute;
        top: -5px;
        right: -5px;
        background: #fff;
        color: #d0bebe;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: bold;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

[b-zv78nmepui] .role-validation-error {
    border: 2px solid #d3bebe;
    background-color: #f8eaea;
}

[b-zv78nmepui] .role-validation-success {
    border: 2px solid #4caf50;
    background-color: #e8f5e8;
}

[b-zv78nmepui] .exclusive-role-tooltip {
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

    [b-zv78nmepui] .exclusive-role-tooltip::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

[b-zv78nmepui] .form-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
}

[b-zv78nmepui] .section-label {
    display: block;
    font-weight: 600;
    color: #174a67;
    margin-bottom: 10px;
    font-size: 1rem;
}

[b-zv78nmepui] .roles-loading {
    opacity: 0.6;
    pointer-events: none;
}

    [b-zv78nmepui] .roles-loading::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid #ccc;
        border-top-color: #2196f3;
        border-radius: 50%;
        animation: spin-b-zv78nmepui 1s linear infinite;
    }

[b-zv78nmepui] .role-description.text-muted {
    color: #000 !important;
}


@keyframes spin-b-zv78nmepui {
    to {
        transform: rotate(360deg);
    }
}

[b-zv78nmepui] .k-multiselect .k-list .k-item .role-item-with-desc {
    display: flex;
    flex-direction: column;
    border: 1px solid cornflowerblue;
    border-radius: 4px;
    padding: 8px;
    margin: 0.5rem 0;
    width: 100%;
    box-sizing: border-box;
}

    [b-zv78nmepui] .k-multiselect .k-list .k-item .role-item-with-desc.exclusive {
        border-color: #d9534f;
    }

    [b-zv78nmepui] .k-multiselect .k-list .k-item .role-item-with-desc .role-name {
        display: inline-block;
        margin: 0;
        font-size: 1rem;
        font-weight: bold;
    }

    [b-zv78nmepui] .k-multiselect .k-list .k-item .role-item-with-desc .exclusive-badge {
        display: inline-block;
        margin-left: 8px;
        padding: 2px 6px;
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
        background: #ffc107;
        color: #212529;
        border-radius: 12px;
        vertical-align: middle;
    }

    [b-zv78nmepui] .k-multiselect .k-list .k-item .role-item-with-desc small.text-muted {
        margin-top: 4px;
        font-size: 0.85rem;
        color: black;
    }

[b-zv78nmepui] .status-badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

[b-zv78nmepui] .status-active {
    background-color: #28a745;
}

[b-zv78nmepui] .status-inactive {
    background-color: #dc3545;
}

[b-zv78nmepui] .status-pending {
    background-color: #fd7e14;
}
/* /Pages/Security/Views/UserView.razor.rz.scp.css */
[b-wwxxk9xrxm] .user-detail-modal .k-window-content {
    padding: 0;
}

[b-wwxxk9xrxm] .user-detail-container {
    padding: 5px;
    max-height: 70vh;
    overflow-y: auto;
}

[b-wwxxk9xrxm] .detail-section {
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

[b-wwxxk9xrxm] .section-header {
    background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

[b-wwxxk9xrxm] .section-icon {
    color: #017DC0;
    margin-right: 10px;
}

[b-wwxxk9xrxm] .section-title {
    margin: 0;
    color: #105880;
    font-size: 1.1rem;
    font-weight: 600;
}

[b-wwxxk9xrxm] .section-content {
    padding: 3px;
    background: #fff;
}

[b-wwxxk9xrxm] .info-item {
    margin-bottom: 15px;
}

    [b-wwxxk9xrxm] .info-item:last-child {
        margin-bottom: 0;
    }

[b-wwxxk9xrxm] .info-label {
    display: block;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

[b-wwxxk9xrxm] .info-value {
    display: block;
    color: black;
    font-size: 1.1rem;
    word-break: break-word;
}

[b-wwxxk9xrxm] .role-badge, [b-wwxxk9xrxm] .group-badge {
    display: inline-flex;
    align-items: center;
    background: #e3f2fd;
    color: #424242;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 3px;
    border: 1px solid #bbdefb;
}

[b-wwxxk9xrxm] .group-badge {
    background: #c8dff2;
    color: #105880;
    border-color: #73b3f1;
}

    [b-wwxxk9xrxm] .role-badge .k-svg-icon, [b-wwxxk9xrxm] .group-badge .k-svg-icon {
        margin-right: 5px;
    }

[b-wwxxk9xrxm] .roles-container, [b-wwxxk9xrxm] .groups-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
}

[b-wwxxk9xrxm] .small {
    font-size: 0.8rem;
    font-family: monospace;
}

[b-wwxxk9xrxm] .role-item, [b-wwxxk9xrxm] .integration-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f5f5f5;
    transition: all 0.2s ease;
    color: #105880 !important;
}

    [b-wwxxk9xrxm] .role-item:hover, [b-wwxxk9xrxm] .integration-item:hover {
        background-color: #ececec;
    }

[b-wwxxk9xrxm] .disabled-role, [b-wwxxk9xrxm] .disabled-integration {
    opacity: 0.5;
    pointer-events: none;
    background-color: #f9f9f9;
    color: #999;
}

[b-wwxxk9xrxm] .exclusive-badge {
    background: linear-gradient(135deg,#e0d8d8,#d5cfcf);
    color: #946045 !important;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(208,198,198,0.3);
}

[b-wwxxk9xrxm] .role-item.exclusive:hover, [b-wwxxk9xrxm] .integration-item.exclusive:hover {
    background: linear-gradient(135deg,#ececec,#e6e6e6);
    border-left: 4px solid #d5cfcf;
}

[b-wwxxk9xrxm] .alert-info {
    background-color: #e3f2fd;
    border: 1px solid #2196f3;
    color: #105880;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
}

[b-wwxxk9xrxm] .k-multiselect .k-multiselect-taglist .k-tag {
    position: relative;
    background: #ececec;
    border-color: #d5d5d5;
    color: #105880 !important;
}

[b-wwxxk9xrxm] .k-multiselect .k-tag.exclusive-role {
    background: #e0d8d8;
    border-color: #cfc5c5;
    color: #105880 !important;
}

    [b-wwxxk9xrxm] .k-multiselect .k-tag.exclusive-role::after {
        content: "⚡";
        position: absolute;
        top: -5px;
        right: -5px;
        background: #fff;
        color: #d0bebe;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: bold;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

[b-wwxxk9xrxm] .role-validation-error {
    border: 2px solid #d3bebe;
    background-color: #f8eaea;
}

[b-wwxxk9xrxm] .role-validation-success {
    border: 2px solid #4caf50;
    background-color: #e8f5e8;
}

[b-wwxxk9xrxm] .exclusive-role-tooltip {
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

    [b-wwxxk9xrxm] .exclusive-role-tooltip::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

[b-wwxxk9xrxm] .form-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
}

[b-wwxxk9xrxm] .section-label {
    display: block;
    font-weight: 600;
    color: #174a67;
    margin-bottom: 10px;
    font-size: 1rem;
}

[b-wwxxk9xrxm] .roles-loading {
    opacity: 0.6;
    pointer-events: none;
}

    [b-wwxxk9xrxm] .roles-loading::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid #ccc;
        border-top-color: #2196f3;
        border-radius: 50%;
        animation: spin-b-wwxxk9xrxm 1s linear infinite;
    }

[b-wwxxk9xrxm] .role-description.text-muted {
    color: #000 !important;
}


@keyframes spin-b-wwxxk9xrxm {
    to {
        transform: rotate(360deg);
    }
}

[b-wwxxk9xrxm] .k-multiselect .k-list .k-item .role-item-with-desc {
    display: flex;
    flex-direction: column;
    border: 1px solid cornflowerblue;
    border-radius: 4px;
    padding: 8px;
    margin: 0.5rem 0;
    width: 100%;
    box-sizing: border-box;
}

    [b-wwxxk9xrxm] .k-multiselect .k-list .k-item .role-item-with-desc.exclusive {
        border-color: #d9534f;
    }

    [b-wwxxk9xrxm] .k-multiselect .k-list .k-item .role-item-with-desc .role-name {
        display: inline-block;
        margin: 0;
        font-size: 1rem;
        font-weight: bold;
    }

    [b-wwxxk9xrxm] .k-multiselect .k-list .k-item .role-item-with-desc .exclusive-badge {
        display: inline-block;
        margin-left: 8px;
        padding: 2px 6px;
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
        background: #ffc107;
        color: #212529;
        border-radius: 12px;
        vertical-align: middle;
    }

    [b-wwxxk9xrxm] .k-multiselect .k-list .k-item .role-item-with-desc small.text-muted {
        margin-top: 4px;
        font-size: 0.85rem;
        color: black;
    }

[b-wwxxk9xrxm] .status-badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

[b-wwxxk9xrxm] .status-active {
    background-color: #28a745;
}

[b-wwxxk9xrxm] .status-inactive {
    background-color: #dc3545;
}

[b-wwxxk9xrxm] .status-pending {
    background-color: #fd7e14;
}
[b-wwxxk9xrxm] .pos-device-no-location-warning {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
    padding: 0.35rem 0.6rem;
    background-color: var(--kendo-color-warning-subtle, #fff3cd);
    color: var(--kendo-color-warning-on-subtle, #664d03);
    border-radius: 4px;
    font-size: 0.8rem;
}

[b-wwxxk9xrxm] .pos-device-no-location-link {
    margin-left: auto;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Lista de devices asignados a POS en el detalle de usuario. */
[b-wwxxk9xrxm] .pos-device-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

[b-wwxxk9xrxm] .pos-device-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    background: #f8f9fa;
    border-left: 3px solid #1976d2;
    border-radius: 3px;
}

[b-wwxxk9xrxm] .pos-device-name {
    font-weight: 600;
}

[b-wwxxk9xrxm] .pos-device-serial {
    font-family: monospace;
    font-size: 0.8rem;
    margin-left: auto;
}

/* Overlay de loading que cubre el modal de Add User mientras esperamos respuesta del backend.
   z-index alto para taparlo encima del TelerikWindow modal (que usa ~10001 por defecto). */
.user-add-loading-overlay[b-wwxxk9xrxm] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 20000;
    pointer-events: all;
}

.user-add-loading-overlay__text[b-wwxxk9xrxm] {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
/* /Pages/Selfservice/OfflineAuthorizationCodes/Components/DevicePresetModal.razor.rz.scp.css */
.device-preset-modal-shell[b-fmwuzgmlt4] {
    position: relative;
    height: 100%;
    min-height: 0;
}

.device-preset-submit-guard[b-fmwuzgmlt4] {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: progress;
    background: transparent;
}

.device-preset-loading-state[b-fmwuzgmlt4] {
    height: 100%;
    min-height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

:deep(.device-preset-wizard)[b-fmwuzgmlt4] {
    height: 100%;
}

:deep(.device-preset-wizard .k-wizard-content)[b-fmwuzgmlt4] {
    min-height: 0;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

:deep(.device-preset-wizard .k-wizard-step-content)[b-fmwuzgmlt4] {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

:deep(.device-preset-wizard .k-wizard-step-content > *)[b-fmwuzgmlt4],
:deep(.device-preset-wizard .k-form)[b-fmwuzgmlt4] {
    min-height: 100%;
}

:deep(.device-preset-wizard .k-wizard-buttons)[b-fmwuzgmlt4],
:deep(.device-preset-wizard .k-actions)[b-fmwuzgmlt4] {
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: #fff;
    border-top: 1px solid #dbe4ef;
    padding: 0.9rem 1rem;
}

.device-preset-modal-shell.is-submitting :deep(.device-preset-wizard .k-wizard-buttons .k-button)[b-fmwuzgmlt4],
.device-preset-modal-shell.is-submitting :deep(.device-preset-wizard .k-actions .k-button)[b-fmwuzgmlt4] {
    pointer-events: none;
    opacity: 0.55;
}

.device-preset-step-panel[b-fmwuzgmlt4] {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    min-height: 100%;
}

/* Step 1 - Keys status */
.device-preset-keys-status[b-fmwuzgmlt4] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    border: 1px solid;
}

.device-preset-keys-status--ok[b-fmwuzgmlt4] {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.device-preset-keys-status--missing[b-fmwuzgmlt4] {
    background: #fefce8;
    border-color: #fde047;
    color: #713f12;
}

.device-preset-keys-icon[b-fmwuzgmlt4] {
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Step 2 - Sale mode */
.device-preset-sale-mode-options[b-fmwuzgmlt4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.device-preset-sale-option[b-fmwuzgmlt4] {
    padding: 1.25rem;
    border: 2px solid #dbe4ef;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.device-preset-sale-option:hover[b-fmwuzgmlt4] {
    border-color: var(--kendo-color-primary, #0d6efd);
}

.device-preset-sale-option--selected[b-fmwuzgmlt4] {
    border-color: var(--kendo-color-primary, #0d6efd);
    background: var(--kendo-color-primary-subtle, #e7f0ff);
}

.device-preset-sale-option p[b-fmwuzgmlt4] {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    opacity: 0.75;
}

/* Step 3 - Details */
.device-preset-customer-kind-toggle[b-fmwuzgmlt4] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.device-preset-primary-fields[b-fmwuzgmlt4] {
    display: grid;
    grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    width: 100%;
}

.device-preset-primary-field[b-fmwuzgmlt4] {
    min-width: 0;
}

.device-preset-required[b-fmwuzgmlt4] {
    color: var(--kendo-color-error, #dc2626);
}

/* Step 4 - Summary */
.device-preset-summary-card[b-fmwuzgmlt4] {
  border: 1px solid #dbe4ef;
  border-radius: 14px;
}

/* Skeleton for code generation */
.device-preset-generating-skeleton[b-fmwuzgmlt4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 2rem;
}

.skeleton-header[b-fmwuzgmlt4] {
    margin-bottom: 1.5rem;
}

.skeleton-code-container[b-fmwuzgmlt4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 1.5rem 2rem;
}

.skeleton-code-digits[b-fmwuzgmlt4] {
    display: flex;
    gap: 0.5rem;
}

.skeleton-code-digits[b-fmwuzgmlt4]  .k-skeleton {
    border-radius: 4px;
}

/* Summary Table Styles */
.device-preset-summary-table[b-fmwuzgmlt4] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    font-size: 0.85rem;
}

.device-preset-summary-table th[b-fmwuzgmlt4],
.device-preset-summary-table td[b-fmwuzgmlt4] {
    padding: 0.35rem 0.5rem;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #e9ecef;
    line-height: 1.3;
}

.device-preset-summary-table tbody tr:last-child td[b-fmwuzgmlt4] {
    border-bottom: none;
}

.device-preset-summary-table th[b-fmwuzgmlt4] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    width: 35%;
}

.device-preset-summary-table td[b-fmwuzgmlt4] {
    color: #212529;
    font-size: 0.85rem;
}

.device-preset-summary-table tr:hover td[b-fmwuzgmlt4] {
    background: #f8f9fa;
}

.device-preset-summary-table .summary-value[b-fmwuzgmlt4] {
    font-weight: 500;
    color: #0d6efd;
}

.device-preset-summary-table .summary-value-muted[b-fmwuzgmlt4] {
    color: #6c757d;
    font-style: italic;
}

/* Step 4 - Code result */
.device-preset-code-result[b-fmwuzgmlt4] {
    text-align: center;
    padding: 2rem 1rem;
}

.device-preset-code-result--split[b-fmwuzgmlt4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    padding: 1.25rem 1.5rem;
}

.device-preset-code-summary-col[b-fmwuzgmlt4] {
    border-right: 1px solid #dbe4ef;
    padding-right: 1.5rem;
}

.device-preset-code-summary-col p[b-fmwuzgmlt4] {
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.device-preset-code-col[b-fmwuzgmlt4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.device-preset-code-display[b-fmwuzgmlt4] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f9fa;
    border: 2px dashed var(--kendo-color-primary, #0d6efd);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 0.75rem 0;
}

.device-preset-code-value[b-fmwuzgmlt4] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.35rem;
    font-family: monospace;
    color: var(--kendo-color-primary, #0d6efd);
}

.device-preset-code-summary[b-fmwuzgmlt4] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--kendo-color-on-surface, #333);
}

.device-preset-config-link[b-fmwuzgmlt4] {
    font-size: 0.85rem;
    color: var(--kendo-color-primary, #0d6efd);
    text-decoration: none;
}

.device-preset-config-link:hover[b-fmwuzgmlt4] {
    text-decoration: underline;
}

/* Step 2 - Profile grid */
.device-preset-profile-grid[b-fmwuzgmlt4] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.25rem;
}

.device-preset-profile-card[b-fmwuzgmlt4] {
    display: flex;
    flex-direction: column;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.45rem;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    position: relative;
    background: #fff;
}

.device-preset-profile-card:hover[b-fmwuzgmlt4] {
    border-color: var(--kendo-color-primary, #0d6efd);
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.12);
}

.device-preset-profile-card--selected[b-fmwuzgmlt4] {
    border-color: var(--kendo-color-primary, #0d6efd);
    background: var(--kendo-color-primary-subtle, #f0f5ff);
}

.profile-card-icon[b-fmwuzgmlt4] {
    margin-bottom: 0.15rem;
    line-height: 1;
}

.profile-card-svg[b-fmwuzgmlt4] {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.profile-card-body[b-fmwuzgmlt4] {
    flex: 1;
}

.profile-card-name[b-fmwuzgmlt4] {
    font-weight: 600;
    font-size: 0.92em;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.profile-card-type[b-fmwuzgmlt4] {
    font-size: 0.85em;
    margin-bottom: 0.25rem;
}

.profile-card-limit[b-fmwuzgmlt4] {
    font-size: 0.82em;
    color: #555;
    margin-bottom: 0.2rem;
}

.profile-card-hose[b-fmwuzgmlt4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.35rem;
}

.profile-hose-chip[b-fmwuzgmlt4],
.profile-product-chip[b-fmwuzgmlt4] {
    font-size: 0.78em;
    background: #e9ecef;
    border-radius: 12px;
    padding: 1px 7px;
    color: #444;
}

.profile-product-chip[b-fmwuzgmlt4] {
    background: #d1ecf1;
    color: #0c5460;
}

.profile-id-badge[b-fmwuzgmlt4] {
    font-size: 0.76em;
    background: #fff3cd;
    color: #856404;
    border-radius: 4px;
    padding: 1px 6px;
    margin-top: 0.35rem;
    display: inline-block;
}

.profile-card-check[b-fmwuzgmlt4] {
    position: absolute;
    top: 6px;
    right: 8px;
    color: var(--kendo-color-primary, #0d6efd);
    font-weight: bold;
    font-size: 1rem;
}

.device-preset-filter-badge[b-fmwuzgmlt4] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.device-preset-filter-badge .badge[b-fmwuzgmlt4] {
    background: #e7f1ff;
    color: var(--kendo-color-primary, #0d6efd);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.8em;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
    .device-preset-profile-grid[b-fmwuzgmlt4] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .device-preset-sale-mode-options[b-fmwuzgmlt4],
    .device-preset-primary-fields[b-fmwuzgmlt4],
    .device-preset-code-result--split[b-fmwuzgmlt4] {
        grid-template-columns: 1fr;
    }

    .device-preset-code-summary-col[b-fmwuzgmlt4] {
        border-right: none;
        border-bottom: 1px solid #dbe4ef;
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
    }

    :deep(.device-preset-wizard .k-form-layout)[b-fmwuzgmlt4] {
        grid-template-columns: 1fr !important;
    }

    :deep(.device-preset-wizard .k-form-field-wrap)[b-fmwuzgmlt4],
    :deep(.device-preset-wizard .k-form-field)[b-fmwuzgmlt4] {
        width: 100%;
    }
}
/* /Pages/Selfservice/OfflineAuthorizationCodes/Views/OfflineAuthorizationConfigView.razor.rz.scp.css */
.pre-filter-content[b-45bs5e3q7h] {
    padding: 0.5rem;
}

.web-grid[b-45bs5e3q7h] {
    display: block;
    width: 100%;
}

.app-grid[b-45bs5e3q7h] {
    display: none;
}

@media (max-width: 767px) {
    .web-grid[b-45bs5e3q7h] {
        display: none;
    }

    .app-grid[b-45bs5e3q7h] {
        display: block;
        width: 100%;
    }
}

:deep(.offline-config-grid)[b-45bs5e3q7h] {
    border: none;
}

:deep(.offline-config-grid .k-grid-content)[b-45bs5e3q7h] {
    overflow-y: auto;
}

.pre-filter-section[b-45bs5e3q7h] {
    margin-bottom: 1.25rem;
}

.pre-filter-section .k-label[b-45bs5e3q7h] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pre-filter-options[b-45bs5e3q7h] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pre-filter-option[b-45bs5e3q7h] {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    text-align: center;
    transition: border-color 0.15s;
    background: #fff;
}

.pre-filter-option:hover[b-45bs5e3q7h] {
    border-color: var(--kendo-color-primary, #0d6efd);
}

.pre-filter-option--selected[b-45bs5e3q7h] {
    border-color: var(--kendo-color-primary, #0d6efd);
    background: var(--kendo-color-primary-subtle, #f0f5ff);
    color: var(--kendo-color-primary, #0d6efd);
}

.offline-config-empty[b-45bs5e3q7h] {
    padding: 48px 24px;
    text-align: center;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 16px;
}

.offline-config-badge[b-45bs5e3q7h] {
    display: inline-block;
    font-size: 0.78em;
    font-weight: 600;
}

.offline-config-badge--ok[b-45bs5e3q7h] {
    color: #15803d;
}

.offline-config-badge--pending[b-45bs5e3q7h] {
    color: #854d0e;
}

.offline-profiles-table[b-45bs5e3q7h] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.offline-profiles-table th[b-45bs5e3q7h] {
    background: #f8f9fa;
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.offline-profiles-table td[b-45bs5e3q7h] {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.offline-profiles-table__row--inactive td[b-45bs5e3q7h] {
    color: #999;
    background: #fafafa;
}

.offline-profiles-table__index[b-45bs5e3q7h] {
    font-weight: 600;
    color: #6c757d;
    width: 32px;
}

.offline-profiles-table__limit[b-45bs5e3q7h] {
    width: 160px;
}

.profile-limit-value[b-45bs5e3q7h] {
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
}

.profile-limit-value:hover[b-45bs5e3q7h] {
    background: #e8f4fd;
}

.profile-limit-edit-hint[b-45bs5e3q7h] {
    font-size: 11px;
    color: #adb5bd;
    margin-left: 4px;
}

.profile-limit-editor[b-45bs5e3q7h] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.profiles-panel[b-45bs5e3q7h] {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: visible;
}

.profiles-panel__desc[b-45bs5e3q7h] {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
}

.profiles-panel__count[b-45bs5e3q7h] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #15803d;
    margin: 0;
}

.profiles-panel__empty[b-45bs5e3q7h] {
    font-size: 0.85rem;
    color: #854d0e;
    margin: 0;
}

.profiles-panel__actions[b-45bs5e3q7h] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.profiles-panel__footer[b-45bs5e3q7h] {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
}

.config-profile-viewall-link[b-45bs5e3q7h] {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0;
    border: none;
    background: none;
    color: var(--kendo-color-primary, #0d6efd);
    font-size: 0.82em;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.config-profile-viewall-link:hover[b-45bs5e3q7h] {
    text-decoration: underline;
}

/* Config profile cards grid */
.config-profile-grid-scroll[b-45bs5e3q7h] {
    overflow-y: auto;
    max-height: min(340px, 50vh);
    scrollbar-gutter: stable;
}

.config-profile-grid[b-45bs5e3q7h] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.config-profile-card[b-45bs5e3q7h] {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.2rem 0.25rem 0.4rem;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s, opacity 0.15s;
    position: relative;
}

.config-profile-card:hover[b-45bs5e3q7h] {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.config-profile-card--inactive[b-45bs5e3q7h] {
    opacity: 0.5;
    background: #fafafa;
}

.config-profile-card--fulltank[b-45bs5e3q7h] { border-left: 3px solid #10b981; }
.config-profile-card--money[b-45bs5e3q7h] { border-left: 3px solid #f59e0b; }
.config-profile-card--money-net[b-45bs5e3q7h] { border-left: 3px solid #ef4444; }
.config-profile-card--volume[b-45bs5e3q7h] { border-left: 3px solid #3b82f6; }
.config-profile-card--volume-net[b-45bs5e3q7h] { border-left: 3px solid #8b5cf6; }

.config-profile-card__row[b-45bs5e3q7h] {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.1rem 0;
}

.config-profile-card__icon[b-45bs5e3q7h] {
    width: 1rem;
    height: 1rem;
    display: block;
}

.config-profile-card__name[b-45bs5e3q7h] {
    font-weight: 600;
    font-size: 0.8em;
    color: #1e293b;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.config-profile-card__type[b-45bs5e3q7h] {
    font-size: 0.7em;
    color: #64748b;
}

.config-profile-card__label[b-45bs5e3q7h] {
    font-size: 0.7em;
    color: #94a3b8;
    min-width: 38px;
}

.config-profile-card__value[b-45bs5e3q7h] {
    font-size: 0.7em;
    font-weight: 500;
    color: #334155;
}

.config-profile-card__value--full[b-45bs5e3q7h] {
    color: #10b981;
    font-weight: 600;
}

.config-profile-card__status[b-45bs5e3q7h] {
    flex-shrink: 0;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 1px 4px;
    border-radius: 3px;
    line-height: 1.3;
}

.config-profile-card__status--on[b-45bs5e3q7h] {
    background: #dcfce7;
    color: #166534;
}

.config-profile-card__chips[b-45bs5e3q7h] {
    display: flex;
    gap: 0.15rem;
    flex-wrap: wrap;
}

.config-profile-card__chip[b-45bs5e3q7h] {
    font-size: 0.6em;
    background: #e2e8f0;
    color: #475569;
    padding: 1px 5px;
    border-radius: 4px;
}

.config-profile-card__identifier[b-45bs5e3q7h] {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.6em;
    font-weight: 600;
    color: #856404;
    background: #fff3cd;
    padding: 1px 4px;
    border-radius: 3px;
}

.config-profile-card:hover[b-45bs5e3q7h] {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.config-profile-card--inactive[b-45bs5e3q7h] {
    opacity: 0.5;
    background: #fafafa;
}

.config-profile-card--fulltank[b-45bs5e3q7h] { border-left: 3px solid #10b981; }
.config-profile-card--money[b-45bs5e3q7h] { border-left: 3px solid #f59e0b; }
.config-profile-card--money-net[b-45bs5e3q7h] { border-left: 3px solid #ef4444; }
.config-profile-card--volume[b-45bs5e3q7h] { border-left: 3px solid #3b82f6; }
.config-profile-card--volume-net[b-45bs5e3q7h] { border-left: 3px solid #8b5cf6; }

.config-profile-card__header[b-45bs5e3q7h] {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0.1rem;
}

.config-profile-card__icon[b-45bs5e3q7h] {
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    padding: 1px;
}

.config-profile-card--fulltank .config-profile-card__icon[b-45bs5e3q7h] { background: #ecfdf5; }
.config-profile-card--money .config-profile-card__icon[b-45bs5e3q7h] { background: #fffbeb; }
.config-profile-card--money-net .config-profile-card__icon[b-45bs5e3q7h] { background: #fef2f2; }
.config-profile-card--volume .config-profile-card__icon[b-45bs5e3q7h] { background: #eff6ff; }
.config-profile-card--volume-net .config-profile-card__icon[b-45bs5e3q7h] { background: #f5f3ff; }

.config-profile-card__svg[b-45bs5e3q7h] {
    width: 0.75rem;
    height: 0.75rem;
    display: block;
}

.config-profile-card__title[b-45bs5e3q7h] {
    flex: 1;
    min-width: 0;
}

.config-profile-card__name[b-45bs5e3q7h] {
    font-weight: 600;
    font-size: 0.8em;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 1.2;
}

.config-profile-card__type[b-45bs5e3q7h] {
    font-size: 0.65em;
    color: #64748b;
    display: block;
    line-height: 1.2;
}

.config-profile-card__status[b-45bs5e3q7h] {
    flex-shrink: 0;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 1px 4px;
    border-radius: 3px;
    line-height: 1.3;
}

.config-profile-card__status--on[b-45bs5e3q7h] {
    background: #dcfce7;
    color: #166534;
}

.config-profile-card__status--off[b-45bs5e3q7h] {
    background: #fee2e2;
    color: #991b1b;
}

.config-profile-card__body[b-45bs5e3q7h] {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.config-profile-card__detail[b-45bs5e3q7h] {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.65em;
    line-height: 1.2;
}

.config-profile-card__detail-label[b-45bs5e3q7h] {
    color: #94a3b8;
    min-width: 28px;
    font-size: 0.95em;
}

.config-profile-card__detail-value[b-45bs5e3q7h] {
    font-weight: 500;
    color: #334155;
}

.config-profile-card__detail-value--full[b-45bs5e3q7h] {
    color: #10b981;
    font-weight: 600;
    font-size: 1.1em;
}

.config-profile-card__info-row[b-45bs5e3q7h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    font-size: 0.72em;
    border-bottom: 1px dashed #e2e8f0;
}

.config-profile-card__info-row:last-child[b-45bs5e3q7h] {
    border-bottom: none;
}

.config-profile-card__info-row label[b-45bs5e3q7h] {
    color: #64748b;
}

.config-profile-card__info-row span[b-45bs5e3q7h] {
    color: #334155;
    font-weight: 500;
}

.config-profile-card__chips[b-45bs5e3q7h] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    margin-top: 0.05rem;
}

.config-profile-card:hover[b-45bs5e3q7h] {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.config-profile-card--inactive[b-45bs5e3q7h] {
    opacity: 0.5;
    background: #fafafa;
}

.config-profile-card--fulltank[b-45bs5e3q7h] { border-left: 3px solid #10b981; }
.config-profile-card--money[b-45bs5e3q7h] { border-left: 3px solid #f59e0b; }
.config-profile-card--money-net[b-45bs5e3q7h] { border-left: 3px solid #ef4444; }
.config-profile-card--volume[b-45bs5e3q7h] { border-left: 3px solid #3b82f6; }
.config-profile-card--volume-net[b-45bs5e3q7h] { border-left: 3px solid #8b5cf6; }

.config-profile-card__header[b-45bs5e3q7h] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.15rem;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.config-profile-card__icon[b-45bs5e3q7h] {
    flex-shrink: 0;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #f8f9fa;
    padding: 2px;
}

.config-profile-card--fulltank .config-profile-card__icon[b-45bs5e3q7h] { background: #ecfdf5; }
.config-profile-card--money .config-profile-card__icon[b-45bs5e3q7h] { background: #fffbeb; }
.config-profile-card--money-net .config-profile-card__icon[b-45bs5e3q7h] { background: #fef2f2; }
.config-profile-card--volume .config-profile-card__icon[b-45bs5e3q7h] { background: #eff6ff; }
.config-profile-card--volume-net .config-profile-card__icon[b-45bs5e3q7h] { background: #f5f3ff; }

.config-profile-card__svg[b-45bs5e3q7h] {
    width: 0.9rem;
    height: 0.9rem;
    display: block;
}

.config-profile-card__title[b-45bs5e3q7h] {
    flex: 1;
    min-width: 0;
}

.config-profile-card__name[b-45bs5e3q7h] {
    font-weight: 600;
    font-size: 0.9em;
    line-height: 1.2;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.config-profile-card__type[b-45bs5e3q7h] {
    font-size: 0.75em;
    color: #64748b;
}

.config-profile-card__status[b-45bs5e3q7h] {
    flex-shrink: 0;
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 1px 5px;
    border-radius: 4px;
    line-height: 1.4;
}

.config-profile-card__status--on[b-45bs5e3q7h] {
    background: #dcfce7;
    color: #166534;
}

.config-profile-card__status--off[b-45bs5e3q7h] {
    background: #fee2e2;
    color: #991b1b;
}

.config-profile-card__body[b-45bs5e3q7h] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.config-profile-card__inline-row[b-45bs5e3q7h] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.config-profile-card__inline-row .config-profile-card__identifier[b-45bs5e3q7h] {
    margin-top: 0;
}

.config-profile-card__detail[b-45bs5e3q7h] {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.7em;
    line-height: 1.3;
}

.config-profile-card__detail-label[b-45bs5e3q7h] {
    color: #94a3b8;
    min-width: 30px;
    text-align: right;
}

.config-profile-card__detail-label[b-45bs5e3q7h]::after {
    content: ":";
}

.config-profile-card__detail-value[b-45bs5e3q7h] {
    font-weight: 500;
    color: #334155;
}

.config-profile-card__detail-value--full[b-45bs5e3q7h] {
    color: #10b981;
    font-weight: 600;
}

.config-profile-card__info-row[b-45bs5e3q7h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    font-size: 0.72em;
    border-bottom: 1px dashed #e2e8f0;
}

.config-profile-card__info-row:last-child[b-45bs5e3q7h] {
    border-bottom: none;
}

.config-profile-card__info-row label[b-45bs5e3q7h] {
    color: #64748b;
}

.config-profile-card__info-row span[b-45bs5e3q7h] {
    color: #334155;
    font-weight: 500;
}

.config-profile-card__chips[b-45bs5e3q7h] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem;
    margin-top: 0.1rem;
}

.config-profile-card__chip[b-45bs5e3q7h] {
    font-size: 0.7em;
    border-radius: 10px;
    padding: 0px 6px;
    line-height: 1.5;
}

.config-profile-card__chip--hose[b-45bs5e3q7h] {
    background: #e9ecef;
    color: #444;
}

.config-profile-card__chip--product[b-45bs5e3q7h] {
    background: #d1ecf1;
    color: #0c5460;
}

.config-profile-card__identifier[b-45bs5e3q7h] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.3rem;
    font-size: 0.72em;
    font-weight: 600;
    color: #856404;
    background: #fff3cd;
    border-radius: 4px;
    padding: 2px 6px;
    align-self: flex-start;
}

.config-profile-card__identifier svg[b-45bs5e3q7h] {
    flex-shrink: 0;
}

@media (max-width: 520px) {
    .config-profile-grid[b-45bs5e3q7h] {
        grid-template-columns: 1fr;
    }
}

:deep(.profiles-manage-modal .k-window-content)[b-45bs5e3q7h],
:deep(.profiles-all-modal .k-window-content)[b-45bs5e3q7h] {
    overflow-y: auto;
}

@media (max-width: 520px) {
    .profiles-panel[b-45bs5e3q7h] {
        padding: 0.5rem;
        gap: 0.35rem;
    }

    .profiles-panel__footer[b-45bs5e3q7h] {
        padding-top: 0.4rem;
    }

    .profiles-panel__actions[b-45bs5e3q7h] {
        flex-direction: column;
    }

    .config-profile-grid-scroll[b-45bs5e3q7h] {
        max-height: 45vh;
    }
}

.cancel-confirm-modal[b-45bs5e3q7h],
.config-confirm-modal[b-45bs5e3q7h] {
    .confirm-content {
        padding: 16px 0;
    }

    .confirm-content p[b-45bs5e3q7h] {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .confirm-details[b-45bs5e3q7h] {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 12px 16px;
        margin-bottom: 16px;
    }

    .confirm-details div[b-45bs5e3q7h] {
        margin-bottom: 8px;
    }

    .confirm-details div:last-child[b-45bs5e3q7h] {
        margin-bottom: 0;
    }

    .confirm-actions[b-45bs5e3q7h] {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        padding-top: 8px;
        border-top: 1px solid #dee2e6;
    }
}
/* /Pages/Selfservice/OfflineAuthorizationCodes/Views/OfflineCodeHistoryView.razor.rz.scp.css */
.offline-history-view[b-2xw1k8rpqp] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offline-history-code[b-2xw1k8rpqp] {
    font-family: monospace;
    font-size: 0.9rem;
    letter-spacing: 0.08rem;
    font-weight: 600;
    color: #1e3a5f;
}

.offline-history-badge[b-2xw1k8rpqp] {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    background: #e9ecef;
    color: #495057;
    white-space: nowrap;
}

.offline-history-badge--pending[b-2xw1k8rpqp] {
    background: #fff3cd;
    color: #856404;
}

.offline-history-badge--completed[b-2xw1k8rpqp] {
    background: #d1e7dd;
    color: #0a3622;
}

.offline-history-badge--cancelled[b-2xw1k8rpqp] {
    background: #e2e3e5;
    color: #41464b;
}

.offline-history-badge--expired[b-2xw1k8rpqp] {
    background: #f8d7da;
    color: #842029;
}

:deep(.offline-history-grid .k-toolbar)[b-2xw1k8rpqp] {
    padding: 0.5rem 0.75rem;
}

.toolbar[b-2xw1k8rpqp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.toolbar__devices[b-2xw1k8rpqp] {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.toolbar__buttons[b-2xw1k8rpqp] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* /Pages/Selfservice/RemoteAuthorization/Components/AtomPresetModal.razor.rz.scp.css */
.atom-preset-modal-shell[b-yln2tsgkbp] {
    position: relative;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.atom-preset-step-panel[b-yln2tsgkbp] {
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.atom-preset-loading-state[b-yln2tsgkbp] {
    height: 100%;
    min-height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atom-preset-submit-guard[b-yln2tsgkbp] {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: progress;
    background: transparent;
}

:deep(.atom-preset-wizard)[b-yln2tsgkbp] {
    height: 100%;
}

:deep(.atom-preset-wizard .k-wizard-content)[b-yln2tsgkbp] {
    min-height: 0;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

:deep(.atom-preset-wizard .k-wizard-step-content)[b-yln2tsgkbp] {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

:deep(.atom-preset-wizard .k-wizard-step-content > *)[b-yln2tsgkbp],
:deep(.atom-preset-wizard .k-form)[b-yln2tsgkbp] {
    min-height: 100%;
}

:deep(.atom-preset-wizard .k-wizard-buttons)[b-yln2tsgkbp],
:deep(.atom-preset-wizard .k-actions)[b-yln2tsgkbp] {
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: #fff;
    border-top: 1px solid #dbe4ef;
    padding: 0.9rem 1rem;
}

.atom-preset-modal-shell.is-submitting :deep(.atom-preset-wizard .k-wizard-buttons .k-button)[b-yln2tsgkbp],
.atom-preset-modal-shell.is-submitting :deep(.atom-preset-wizard .k-actions .k-button)[b-yln2tsgkbp] {
    pointer-events: none;
    opacity: 0.55;
}

.atom-preset-summary-card[b-yln2tsgkbp] {
    border: 1px solid #dbe4ef;
    border-radius: 14px;
}

.atom-preset-primary-fields[b-yln2tsgkbp] {
    display: grid;
    grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    width: 100%;
}

.atom-preset-reference-fields[b-yln2tsgkbp] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.atom-preset-product-highlight[b-yln2tsgkbp] {
    width: 100%;
    margin-top: 1rem;
}

.atom-preset-odometer-panel[b-yln2tsgkbp] {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #dbe4ef;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.atom-preset-odometer-header[b-yln2tsgkbp] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.85rem;
}

.atom-preset-odometer-hint[b-yln2tsgkbp] {
    color: #4f6982;
    font-size: 0.9rem;
    line-height: 1.4;
}

.atom-preset-odometer-fields[b-yln2tsgkbp] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 1rem;
}

.atom-preset-odometer-field[b-yln2tsgkbp] {
    min-width: 0;
}

.atom-preset-reference-field[b-yln2tsgkbp] {
    min-width: 0;
}

.atom-preset-primary-field[b-yln2tsgkbp] {
    min-width: 0;
}

.atom-preset-readonly-value[b-yln2tsgkbp] {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    padding: 0.7rem 0.85rem;
    border: 1px solid #dbe4ef;
    border-radius: 10px;
    background: #f7fafd;
    color: #2c425a;
    font-weight: 600;
}

.atom-preset-readonly-value--product[b-yln2tsgkbp] {
    min-height: 3rem;
    border-color: #bfd6ea;
    background: #eef6ff;
    color: #113a5c;
    font-size: 1rem;
    font-weight: 700;
}

.atom-preset-value-label[b-yln2tsgkbp] {
    display: block;
    text-align: center;
    width: 100%;
}

.atom-preset-value-input[b-yln2tsgkbp] {
    max-width: 24rem;
    margin: 0 auto;
}

:deep(.atom-preset-value-input .k-numerictextbox)[b-yln2tsgkbp] {
    width: 100%;
}

:deep(.atom-preset-value-input .k-input-inner)[b-yln2tsgkbp] {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
    padding-block: 0.85rem;
}

@media (max-width: 768px) {
    .atom-preset-primary-fields[b-yln2tsgkbp] {
        grid-template-columns: 1fr;
    }

    .atom-preset-odometer-panel[b-yln2tsgkbp] {
        padding: 0.9rem;
    }

    :deep(.atom-preset-wizard .k-form-layout)[b-yln2tsgkbp] {
        grid-template-columns: 1fr !important;
    }

    :deep(.atom-preset-wizard .k-form-field-wrap)[b-yln2tsgkbp],
    :deep(.atom-preset-wizard .k-form-field)[b-yln2tsgkbp] {
        width: 100%;
    }

    .atom-preset-value-input[b-yln2tsgkbp] {
        max-width: none;
    }

    :deep(.atom-preset-value-input .k-input-inner)[b-yln2tsgkbp] {
        font-size: 1.45rem;
    }
}
/* /Pages/Selfservice/RemoteAuthorization/Components/SplStartDispatchModal.razor.rz.scp.css */
.atom-preset-modal-shell[b-q94qd0i48t] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.atom-preset-wizard[b-q94qd0i48t] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Make wizard content scrollable */
.atom-preset-wizard[b-q94qd0i48t]  .k-wizard-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 0;
}

/* Fix wizard buttons at the bottom */
.atom-preset-wizard[b-q94qd0i48t]  .k-wizard-buttons {
    position: sticky;
    bottom: 0;
    background: var(--bg-primary, #fff);
    border-top: 1px solid var(--border-color, #e0e0e0);
    padding: 0.75rem 1rem;
    z-index: 10;
}

/* ── Channel/Hose read-only selection ── */
.dispatch-selection-summary[b-q94qd0i48t] {
    display: flex;
    gap: 1.5rem;
    background: #f0f7ff;
    border: 1px solid #d0e3f5;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
}

.dispatch-selection-item[b-q94qd0i48t] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.dispatch-selection-item .k-label.k-form-label[b-q94qd0i48t] {
    font-size: 0.72rem;
    color: #549fdd;
    font-weight: 600;
    margin-bottom: 0;
}

.dispatch-selection-item .atom-preset-readonly-value[b-q94qd0i48t] {
    font-size: 0.88rem;
    color: #08324d;
    font-weight: 500;
}
/* /Pages/Selfservice/RemoteAuthorization/SelfService.razor.rz.scp.css */
/* /Pages/Selfservice/RemoteAuthorization/Views/SelfServiceView.razor.rz.scp.css */
.self-service-truncate[b-hxyecxfo9r] {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

:deep(.self-service-grid .k-grid-header th)[b-hxyecxfo9r],
:deep(.self-service-grid .k-table-td)[b-hxyecxfo9r] {
    padding-inline: 0.75rem;
}

:deep(.self-service-grid .k-grid-content)[b-hxyecxfo9r] {
    overflow-x: hidden;
}

:deep(.self-service-grid .k-pager-wrap)[b-hxyecxfo9r] {
    border-top: 1px solid #dbe4ef;
    padding-block: 0.5rem;
}
 
.ss-status-badge[b-hxyecxfo9r] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #334155;
}

.ss-status-completed[b-hxyecxfo9r],
.ss-status-approved[b-hxyecxfo9r] {
    color: #059669;
}

.ss-status-failed[b-hxyecxfo9r],
.ss-status-expired[b-hxyecxfo9r],
.ss-status-rejected[b-hxyecxfo9r],
.ss-status-cancelled[b-hxyecxfo9r] {
    color: #be123c;
}

.ss-status-awaitingauth[b-hxyecxfo9r] {
    color: #b45309;
}

.ss-status-pending[b-hxyecxfo9r] {
    color: #0284c7;
}

.ss-status-sent[b-hxyecxfo9r] {
    color: #475569;
}

.ss-status-inprogress[b-hxyecxfo9r] {
    color: #1d4ed8;
}

/* Loading Overlay */
.loading-overlay[b-hxyecxfo9r] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Modales Detalle Transaccion */
.transaction-detail-container[b-hxyecxfo9r] {
    padding: 0.5rem;
    background-color: #f8fafc;
    max-height: min(500px, 72vh);
    overflow-y: auto;
}

.transaction-detail-table[b-hxyecxfo9r] {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    table-layout: fixed;
}

.transaction-detail-table tbody tr:last-child td[b-hxyecxfo9r] {
    border-bottom: none;
}

.tdt-label[b-hxyecxfo9r] {
    background-color: #007cc0;
    color: #ffffff;
    font-weight: 700;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    border-bottom: 2px solid #ffffff;
    width: 40%;
    vertical-align: middle;
    word-break: break-word;
}

.tdt-value[b-hxyecxfo9r] {
    background-color: #ffffff;
    color: #000000;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
    word-break: break-word;
}

.tdt-value strong[b-hxyecxfo9r] {
    font-weight: 800;
}

.tdt-value--summary[b-hxyecxfo9r] {
    padding-block: 0.4rem;
}

.tdt-summary-row[b-hxyecxfo9r] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.tdt-summary-status[b-hxyecxfo9r] {
    margin: 0;
    min-width: auto;
    flex-shrink: 0;
}

.tdt-value--multiline[b-hxyecxfo9r] {
    white-space: pre-wrap;
}

.tdt-section[b-hxyecxfo9r] {
    padding: 0.45rem 0.75rem;
    background: linear-gradient(90deg, rgba(1, 125, 192, 0.12), rgba(1, 125, 192, 0.04));
    color: #0f3b5b;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-top: 1px solid rgba(1, 125, 192, 0.18);
    border-bottom: 1px solid rgba(1, 125, 192, 0.12);
}

@media (max-width: 600px) {
    .transaction-detail-container[b-hxyecxfo9r] {
        padding: 0.35rem;
        max-height: 65vh;
    }

    .tdt-label[b-hxyecxfo9r],
    .tdt-value[b-hxyecxfo9r] {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .tdt-summary-row[b-hxyecxfo9r] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* /Pages/Settings/Backup.razor.rz.scp.css */
/* /Pages/Settings/Devices.razor.rz.scp.css */
/* /Pages/Settings/GeneralSettings.razor.rz.scp.css */
/* /Pages/Settings/GenericsSettings.razor.rz.scp.css */
/* /Pages/Settings/Products.razor.rz.scp.css */
/* /Pages/Settings/Tanks.razor.rz.scp.css */
/* /Pages/Settings/Views/DeviceView.razor.rz.scp.css */
.device-avatar[b-bph9ckvhfb] {
    height: 120px;
    width: 120px;
    max-width: 120px;
    object-fit: contain;
}

.device-avatar[src*="atom.webp"][b-bph9ckvhfb] {
        height: 170px;
}

 
[b-bph9ckvhfb] .device-avatar-det[src*="atom.webp"] {
    height: 110px;
}

.form-section-compact[b-bph9ckvhfb] {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.section-title[b-bph9ckvhfb] {
    color: #0d6efd;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.25rem;
}

    .section-title i[b-bph9ckvhfb] {
        color: #0d6efd;
    }

.form-label-compact[b-bph9ckvhfb] {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #495057;
}

.info-note[b-bph9ckvhfb] {
    background: #e3f2fd;
    border-radius: 4px;
    padding: 0.5rem;
    border-left: 3px solid #2196f3;
    margin-top: 0.5rem;
}

.atom-registration-modal .k-window-content[b-bph9ckvhfb] {
    padding: 1rem;
    max-height: 50vh;
    overflow-y: auto;
}

.atom-result-modal .k-window-content[b-bph9ckvhfb] {
    padding: 1rem;
    max-height: 55vh;
    overflow-y: auto;
}

.device-info-compact .info-row[b-bph9ckvhfb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f1f1f1;
}

    .device-info-compact .info-row:last-child[b-bph9ckvhfb] {
        border-bottom: none;
    }

/* QR Scanner Modal Styles */
.qr-scanner-modal--responsive .modal-title-text[b-bph9ckvhfb] {
    font-size: 1rem;
    line-height: 1.2;
}

.qr-scanner-content[b-bph9ckvhfb] {
    padding: 0.5rem 0;
}

.btn-activate-device[b-bph9ckvhfb] {
    min-width: 120px;
    white-space: nowrap;
}

/* Result Modal Styles */
.modal__result--responsive .result-content[b-bph9ckvhfb] {
    padding: 0.5rem 0;
}

.modal__result--responsive .device-info[b-bph9ckvhfb] {
    font-size: 0.9rem;
}

.modal__result--responsive .device-info-item[b-bph9ckvhfb] {
    margin-bottom: 0.75rem;
}

.modal__result--responsive .modal-buttons[b-bph9ckvhfb] {
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.btn-modal-action[b-bph9ckvhfb] {
    min-width: 80px;
}

/* Mobile close button styles */
.btn-close[b-bph9ckvhfb] {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 1.2rem;
    padding: 0.25rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-close:hover[b-bph9ckvhfb] {
    background-color: #f8f9fa;
    color: #495057;
}

.btn-close:active[b-bph9ckvhfb] {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .atom-registration-modal[b-bph9ckvhfb] {
        width: 95% !important;
        max-width: none !important;
    }

    .atom-result-modal[b-bph9ckvhfb] {
        width: 95% !important;
        max-width: none !important;
    }

    .qr-scanner-modal--responsive[b-bph9ckvhfb] {
        width: 95% !important;
        max-width: none !important;
        margin: 1rem;
    }

    .modal__result--responsive[b-bph9ckvhfb] {
        width: 95% !important;
        max-width: none !important;
        margin: 1rem;
    }

    .form-section-compact[b-bph9ckvhfb] {
        padding: 0.75rem;
    }

    .section-title[b-bph9ckvhfb] {
        font-size: 0.85rem;
    }

    .device-info-compact .info-row[b-bph9ckvhfb] {
        flex-direction: column;
        align-items: flex-start;
    }

    .qr-image[b-bph9ckvhfb] {
        max-width: 150px !important;
    }

    /* Mobile-specific QR scanner improvements */
    .qr-scanner-content[b-bph9ckvhfb] {
        padding: 0.25rem 0;
    }

    .modal-title-text[b-bph9ckvhfb] {
        font-size: 0.9rem;
    }

    .btn-activate-device[b-bph9ckvhfb] {
        min-width: 100px;
        font-size: 0.85rem;
        padding: 0.375rem 0.75rem;
    }

    /* Better spacing for alerts on mobile */
    .alert[b-bph9ckvhfb] {
        margin-bottom: 0.75rem;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .alert small[b-bph9ckvhfb] {
        font-size: 0.8rem;
    }

    /* Result modal mobile improvements */
    .modal__result--responsive .result-content[b-bph9ckvhfb] {
        padding: 0.25rem 0;
    }

    .modal__result--responsive .device-info[b-bph9ckvhfb] {
        font-size: 0.85rem;
        padding: 0.75rem;
    }

    .modal__result--responsive .device-info-item[b-bph9ckvhfb] {
        margin-bottom: 0.5rem;
    }

    .modal__result--responsive .modal-buttons[b-bph9ckvhfb] {
        padding-top: 0.75rem;
        margin-top: 0.75rem;
    }

    .btn-modal-action[b-bph9ckvhfb] {
        width: 100%;
        min-width: auto;
    }
}

.atom-activation-result[b-bph9ckvhfb] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.device-info-card[b-bph9ckvhfb],
.qr-code-card[b-bph9ckvhfb] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
}

.atom-activation-result .table-sm[b-bph9ckvhfb] {
    margin-bottom: 0;
}

    .atom-activation-result .table-sm td[b-bph9ckvhfb] {
        padding: 0.5rem 0.5rem;
        border: none;
        vertical-align: middle;
    }

.activation-code-input[b-bph9ckvhfb] {
    font-family: 'Courier New', monospace !important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
    background-color: #e9ecef !important;
    font-size: 1.1rem !important;
    text-align: center !important;
}

.qr-container[b-bph9ckvhfb] {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.qr-image[b-bph9ckvhfb] {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.activation-code-section[b-bph9ckvhfb] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.spinner-border-sm[b-bph9ckvhfb] {
    width: 1rem;
    height: 1rem;
}

.modal__edit .k-window-content[b-bph9ckvhfb] {
    max-height: 40vh;
    overflow-y: auto;
}

.k-form-field-wrap[b-bph9ckvhfb] {
    margin-bottom: 0.5rem;
}

.text-primary[b-bph9ckvhfb] {
    color: #0d6efd !important;
}

.form-section .row[b-bph9ckvhfb] {
    margin-bottom: 1rem;
}

    .form-section .row:last-child[b-bph9ckvhfb] {
        margin-bottom: 0;
    }

.location-selector[b-bph9ckvhfb] {
    width: 100%;
}

.map-container[b-bph9ckvhfb] {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 0.5rem;
}

.map-controls[b-bph9ckvhfb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.map-controls small[b-bph9ckvhfb] {
    flex: 1;
    min-width: 200px;
}

.map-controls .ms-1[b-bph9ckvhfb] {
    margin-left: 0.25rem !important;
}

@media (max-width: 768px) {
    .map-container[b-bph9ckvhfb] {
        padding: 0.25rem;
    }

    .map-controls[b-bph9ckvhfb] {
        flex-direction: column;
        align-items: stretch;
    }

    .map-controls small[b-bph9ckvhfb] {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

.mobile-unified-view[b-bph9ckvhfb] {
    margin: 0.5rem 0;
    margin-top: 1rem; 
    padding-top: 10px; 
}

.unified-container[b-bph9ckvhfb] {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.unified-section[b-bph9ckvhfb] {
    background: white;
    margin-bottom: 0.25rem;
}

.unified-section:last-child[b-bph9ckvhfb] {
    margin-bottom: 0;
}

.unified-header[b-bph9ckvhfb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #e9ecef;
    border-bottom: 1px solid #dee2e6;
}

.unified-header h6[b-bph9ckvhfb] {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
}

.badge-group[b-bph9ckvhfb] {
    display: flex;
    gap: 0.25rem;
}

.btn-scan-qr[b-bph9ckvhfb] {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #dee2e6 !important;
    color: #a4adb5 !important;
    background-color: #f8f9fa !important;
}

.btn-scan-qr:hover[b-bph9ckvhfb] {
    border-color: #6c757d !important;
    background-color: #e9ecef !important;
    color: #495057 !important;
}

.btn-delete-atom[b-bph9ckvhfb] {
    font-size: 0.75rem;
    padding: 0.25rem;
    min-width: auto;
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6 !important;
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    transition: all 0.2s ease;
}

.btn-delete-atom:hover[b-bph9ckvhfb] {
    background-color: #e9ecef !important;
    color: #495057 !important;
    transform: scale(1.05);
    border-color: #6c757d !important;
}

.btn-delete-atom:active[b-bph9ckvhfb] {
    transform: scale(0.95);
}

.delete-button-container[b-bph9ckvhfb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge-complete[b-bph9ckvhfb] {
    background-color: #f8f9fa !important;
    color: #495057 !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: inset 0 1px 0 rgba(76, 175, 80, 0.1) !important;
}

.badge-activated[b-bph9ckvhfb] {
    background-color: #f8f9fa !important;
    color: #495057 !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: inset 0 1px 0 rgba(33, 150, 243, 0.08) !important;
}

.badge-pending[b-bph9ckvhfb] {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border: 1px solid #dee2e6 !important;
}

.badge-config-pending[b-bph9ckvhfb] {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border: 1px solid #dee2e6 !important;
    font-size: 0.65rem !important;
    font-weight: 500;
    animation: subtle-pulse-b-bph9ckvhfb 3s ease-in-out infinite;
    box-shadow: inset 0 1px 0 rgba(255, 193, 7, 0.08) !important;
}

@keyframes subtle-pulse-b-bph9ckvhfb {
    0%, 100% {
        opacity: 1;
        box-shadow: inset 0 1px 0 rgba(255, 193, 7, 0.08);
    }
    50% {
        opacity: 0.85;
        box-shadow: inset 0 1px 0 rgba(255, 193, 7, 0.12);
    }
}

.unified-items[b-bph9ckvhfb] {
    padding: 0.5rem;
}

.mobile-unified-view .k-button.k-button-outline[b-bph9ckvhfb],
.mobile-unified-view .k-button[b-bph9ckvhfb],
.mobile-unified-view button.k-button[b-bph9ckvhfb] {
    border: 1px solid #dee2e6 !important;
    background-color: #f8f9fa !important;
    color: #6c757d !important;
}

.mobile-unified-view .k-button.k-button-outline:hover[b-bph9ckvhfb],
.mobile-unified-view .k-button:hover[b-bph9ckvhfb],
.mobile-unified-view button.k-button:hover[b-bph9ckvhfb] {
    border-color: #6c757d !important;
    background-color: #e9ecef !important;
    color: #495057 !important;
}

.mobile-unified-view .k-button.k-button-outline:focus[b-bph9ckvhfb],
.mobile-unified-view .k-button:focus[b-bph9ckvhfb],
.mobile-unified-view button.k-button:focus[b-bph9ckvhfb] {
    border-color: #6c757d !important;
    background-color: #e9ecef !important;
    color: #495057 !important;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25) !important;
}

.mobile-unified-view .k-button-outline.k-button-dark[b-bph9ckvhfb],
.mobile-unified-view .k-button-outline[b-bph9ckvhfb] {
    border: 1px solid #dee2e6 !important;
    background-color: #f8f9fa !important;
    color: #6c757d !important;
}

.mobile-unified-view .k-button .k-svg-icon[b-bph9ckvhfb],
.mobile-unified-view .k-button .k-icon[b-bph9ckvhfb] {
    color: #6c757d !important;
    fill: #6c757d !important;
}

.mobile-unified-view .k-button:hover .k-svg-icon[b-bph9ckvhfb],
.mobile-unified-view .k-button:hover .k-icon[b-bph9ckvhfb] {
    color: #495057 !important;
    fill: #495057 !important;
}

.mobile-unified-view .k-button[class*="k-button-"][b-bph9ckvhfb] {
    border-color: #dee2e6 !important;
    background-color: #f8f9fa !important;
    color: #6c757d !important;
}

.unified-item[b-bph9ckvhfb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.unified-item:hover[b-bph9ckvhfb] {
    background: #e9ecef;
}

.unified-item:last-child[b-bph9ckvhfb] {
    margin-bottom: 0;
}

.item-info[b-bph9ckvhfb] {
    flex: 1;
}

.item-name[b-bph9ckvhfb] {
    font-weight: 600;
    font-size: 0.85rem;
    color: #212529;
    margin-bottom: 0.1rem;
}

.item-detail[b-bph9ckvhfb] {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.2;
}

.item-status[b-bph9ckvhfb] {
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.unified-empty[b-bph9ckvhfb] {
    padding: 1rem;
    text-align: center;
    color: #6c757d;
    font-size: 0.85rem;
}

@media (max-width: 575.98px) {
    .mobile-unified-view[b-bph9ckvhfb] {
        margin: 0.25rem 0;
    }
    
    .unified-header[b-bph9ckvhfb] {
        padding: 0.4rem 0.5rem;
    }
    
    .unified-header h6[b-bph9ckvhfb] {
        font-size: 0.85rem;
    }
    
    .unified-items[b-bph9ckvhfb] {
        padding: 0.4rem;
    }
    
    .unified-item[b-bph9ckvhfb] {
        padding: 0.4rem;
        margin-bottom: 0.2rem;
    }
    
    .item-name[b-bph9ckvhfb] {
        font-size: 0.8rem;
    }
    
    .item-detail[b-bph9ckvhfb] {
        font-size: 0.7rem;
    }
    
    .btn-scan-qr[b-bph9ckvhfb] {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .badge[b-bph9ckvhfb] {
        font-size: 0.65rem;
    }
}

.k-grid-content[b-bph9ckvhfb] {
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow-y: visible !important;
}

@media (max-width: 767.98px) {
    .mb-4[b-bph9ckvhfb] {
        margin-bottom: 0.25rem !important;
    }
    
    .mb-3.mb-md-4[b-bph9ckvhfb] {
        margin-bottom: 0.15rem !important;
    }
    
    .app-grid .k-grid[b-bph9ckvhfb] {
        margin-bottom: 0.15rem;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .app-grid .k-grid .k-grid-toolbar[b-bph9ckvhfb] {
        padding: 0.25rem;
        min-height: auto;
        background-color: #f8f9fa;
        border-bottom: 1px solid #dee2e6;
    }
    
    .app-grid .k-grid .k-grid-toolbar h6[b-bph9ckvhfb] {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .mobile-grid-cell[b-bph9ckvhfb] {
        padding: 0.15rem 0;
        line-height: 1.2;
    }
    
    .mobile-grid-cell small[b-bph9ckvhfb] {
        font-size: 0.7rem;
        color: #6c757d;
        display: block;
        margin-bottom: 0.1rem;
        line-height: 1;
    }
    
    .mobile-grid-cell .fw-bold[b-bph9ckvhfb],
    .mobile-grid-cell .fw-semibold[b-bph9ckvhfb] {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .mobile-grid-cell .badge[b-bph9ckvhfb] {
        font-size: 0.65rem;
        padding: 0.15em 0.35em;
        margin: 0.1rem 0;
    }
    
    .badge.small[b-bph9ckvhfb] {
        font-size: 0.7rem;
        padding: 0.2em 0.4em;
    }
    
    .app-grid + .app-grid[b-bph9ckvhfb] {
        margin-top: 0.05rem;
    }
    
    .app-grid .k-grid-content[b-bph9ckvhfb] {
        max-height: none !important;
        height: auto !important;
        overflow-y: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        min-height: auto !important;
    }
    
    .app-grid .k-grid-content .k-table[b-bph9ckvhfb] {
        font-size: 0.85rem;
        height: auto !important;
        margin: 0 !important;
    }
    
    .app-grid .k-grid-content .k-table tbody[b-bph9ckvhfb] {
        height: auto !important;
        min-height: auto !important;
    }
    
    .app-grid .k-grid-content .k-table td[b-bph9ckvhfb] {
        padding: 0.2rem 0.15rem;
        line-height: 1.2;
    }
    
    .app-grid .k-grid-content .k-table th[b-bph9ckvhfb] {
        padding: 0.2rem 0.15rem;
        font-size: 0.8rem;
    }
    
    .app-grid .k-grid .k-table tbody tr[b-bph9ckvhfb] {
        height: auto !important;
        min-height: 32px;
    }
    
    h4.d-none.d-md-block[b-bph9ckvhfb],
    h5.d-md-none[b-bph9ckvhfb] {
        font-weight: 600;
        color: #495057;
    }
    
    h5.d-md-none[b-bph9ckvhfb] {
        font-size: 1.1rem;
    }
    
    .badge.bg-info[b-bph9ckvhfb],
    .badge.bg-success[b-bph9ckvhfb],
    .badge.bg-warning[b-bph9ckvhfb] {
        font-size: 0.75rem;
        font-weight: 500;
    }
}

@media (max-width: 575.98px) {
    .app-grid .k-grid .k-grid-toolbar[b-bph9ckvhfb] {
        padding: 0.3rem;
    }
    
    .app-grid .k-grid .k-grid-toolbar h6[b-bph9ckvhfb] {
        font-size: 0.8rem;
    }
    
    .app-grid .k-grid .k-grid-toolbar .d-flex .gap-1[b-bph9ckvhfb] {
        gap: 0.2rem !important;
    }
    
    .mobile-grid-cell[b-bph9ckvhfb] {
        padding: 0.1rem 0;
    }
    
    .mobile-grid-cell small[b-bph9ckvhfb] {
        font-size: 0.65rem;
        margin-bottom: 0.05rem;
    }
    
    .mobile-grid-cell .fw-bold[b-bph9ckvhfb],
    .mobile-grid-cell .fw-semibold[b-bph9ckvhfb] {
        font-size: 0.8rem;
    }
    
    h5.d-md-none[b-bph9ckvhfb] {
        font-size: 0.95rem;
    }
    
    .badge[b-bph9ckvhfb] {
        font-size: 0.65rem;
        padding: 0.1em 0.25em;
    }
    
    .app-grid .k-grid-content .k-table td[b-bph9ckvhfb] {
        padding: 0.3rem 0.2rem;
    }
    
    .app-grid .k-grid-content .k-table th[b-bph9ckvhfb] {
        padding: 0.3rem 0.2rem;
        font-size: 0.75rem;
    }
    
    .app-grid .k-grid .k-table tbody tr[b-bph9ckvhfb] {
        min-height: 28px;
    }

    .compact-mobile-grid .k-grid-table[b-bph9ckvhfb] {
        font-size: 0.85rem;
    }

    .compact-mobile-grid .k-grid-header[b-bph9ckvhfb],
    .compact-mobile-grid .k-grid-content[b-bph9ckvhfb] {
        padding: 0.15rem;
    }

    .compact-mobile-grid .k-table-td[b-bph9ckvhfb] {
        padding: 0.35rem 0.15rem !important;
    }

    .compact-mobile-grid .k-grid-header .k-table-th[b-bph9ckvhfb] {
        padding: 0.4rem 0.15rem !important;
    }

    .mobile-grid-cell[b-bph9ckvhfb] {
        padding: 0.1rem 0 !important;
    }

        .mobile-grid-cell small[b-bph9ckvhfb] {
            font-size: 0.65rem;
            margin-bottom: 0.05rem;
        }

    .mobile-section-title[b-bph9ckvhfb] {
        font-size: 0.95rem;
        margin-bottom: 0.4rem !important;
    }

    .mobile-badge[b-bph9ckvhfb] {
        font-size: 0.75rem;
    }

    @media (max-width: 767.98px) {
        .mb-4[b-bph9ckvhfb] {
            margin-bottom: 0.75rem !important;
        }

        .mb-3.mb-md-4[b-bph9ckvhfb] {
            margin-bottom: 0.5rem !important;
        }

        .app-grid .k-grid[b-bph9ckvhfb] {
            margin-bottom: 0.75rem;
        }

        .mt-2[b-bph9ckvhfb] {
            margin-top: 0.5rem !important;
        }

        .qr-scanner-btn .command-text[b-bph9ckvhfb] {
            display: none;
        }

        .qr-scanner-btn .k-icon[b-bph9ckvhfb] {
            margin-right: 0 !important;
        }
    }

    @media (max-width: 400px) {
        .compact-mobile-grid .k-grid-table[b-bph9ckvhfb] {
            font-size: 0.78rem;
        }

        .mobile-grid-cell small[b-bph9ckvhfb] {
            font-size: 0.58rem;
        }

        .mobile-section-title[b-bph9ckvhfb] {
            font-size: 0.88rem;
            margin-bottom: 0.1rem !important;
        }
        
        .compact-mobile-grid .k-grid[b-bph9ckvhfb] {
            margin-bottom: 0.2rem;
        }
        
        .app-grid + .app-grid[b-bph9ckvhfb] {
            margin-top: 0.1rem;
        }
        
        .mb-4[b-bph9ckvhfb] {
            margin-bottom: 0.1rem !important;
        }
        
        .compact-mobile-grid .k-grid-content[b-bph9ckvhfb],
        .app-grid .k-grid-content[b-bph9ckvhfb] {
            max-height: none !important;
            height: auto !important;
            overflow-y: visible !important;
            padding: 0 !important;
            margin: 0 !important;
            min-height: auto !important;
        }
    }

}

 
/* /Pages/Settings/Views/TankView.razor.rz.scp.css */
/* Modal Overlay and Container */
.tank-settings-modal-overlay[b-0tdaq024nh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-0tdaq024nh 0.2s ease-out;
}

.tank-settings-modal-content[b-0tdaq024nh] {
    background: #ffffff;
    width: 400px;
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    overflow: hidden;
    transform: scale(0.95);
    animation: zoomIn-b-0tdaq024nh 0.2s ease-out forwards;
    display: flex;
    flex-direction: column;
}

.tank-settings-modal-header[b-0tdaq024nh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.tank-settings-modal-close-btn[b-0tdaq024nh] {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    opacity: 0.85;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tank-settings-modal-close-btn:hover[b-0tdaq024nh] {
        opacity: 1;
    }

.tank-settings-modal-body[b-0tdaq024nh] {
    padding: 20px;
}

.tank-settings-modal-row[b-0tdaq024nh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .tank-settings-modal-row:last-child[b-0tdaq024nh] {
        border-bottom: none;
        padding-bottom: 0;
    }

.tank-settings-modal-label[b-0tdaq024nh] {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.tank-settings-modal-value[b-0tdaq024nh] {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tank-settings-btn[b-0tdaq024nh] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none; 
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
}

.tank-settings-btn:hover[b-0tdaq024nh] {
    background-color: #f0f0f0;
    color: #333;
}

@keyframes fadeIn-b-0tdaq024nh {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn-b-0tdaq024nh {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* /Pages/SignIn.razor.rz.scp.css */
/******************************LOGIN******************************/
/*.loginform {
    background: white;
    border-radius: 20px;
    padding: 2rem 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/ /* Sombra visible alrededor del formulario */
    /*display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
    max-height: 100%;
}

    .loginform input {
        border: 1px solid #eeeeee;
        border-radius: 4px;
        padding: 0.5rem;
        margin-bottom: 1rem;
        outline: none;
    }

        .loginform input:focus {
            border-color: #017DC0;
            box-shadow: 0 0 4px rgba(1, 125, 192, 0.3);
        }


.login .btn-primary {
    color: #fff;
    background-color: #017DC0;
    border: none;
    width: 100%;
}

    .login .btn-primary:hover {
        background-color: #0a58ca;
    }

    .login .btn-primary:focus {
        box-shadow: none;
    }

.login .k-item.k-active {
    display: none;
}

.login img {
    max-width: 300px;
    margin: 20px auto;
}

.login .row {
    max-width: 1270px;
    align-items: center;
}

.login .col-lg-7 {
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    padding: 0 10rem 6rem 0;
    text-align: center;
}

@media (max-width: 1000px) {
    .form__container {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

    .login .col-lg-7 {
        padding: 0;
    }

    .container__logo {
        padding: 0;
    }

    .login .loginform {
        width: 75%;
        margin-top: 5rem;
    }

    .background-img {
        align-items: stretch;
    }
}

.dual-ring-spinner {
    display: inline-block;
    width: 64px;
    height: 64px;
}

    .dual-ring-spinner:after {
        content: " ";
        display: block;
        width: 46px;
        height: 46px;
        margin: 1px;
        border-radius: 50%;
        border: 5px solid #007bff;
        border-color: #007bff transparent #007bff transparent;
        animation: dual-ring-spin 1.2s linear infinite;
    }

@keyframes dual-ring-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/
/******************************LOGIN******************************/
/* /Pages/SignInMobile.razor.rz.scp.css */
.loginform[b-l4fej65dm6] {
    max-height: 100%;
}

@media (max-width: 1000px) {
    .form__container[b-l4fej65dm6] {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: center;
    }
    .login .col-lg-7[b-l4fej65dm6] {
        padding: 0;
    }
    .container__logo[b-l4fej65dm6] {
        padding: 0;
    }

    .login .loginform[b-l4fej65dm6] {
        width: 75%;
        margin-top: 5rem;
    }

    .background-img[b-l4fej65dm6] {
        align-items: stretch;
    }
}
/* /Pages/TermsAndConditions.razor.rz.scp.css */
/* ===== Terms document styles (mirrors PrivacyPolicy.razor.css; scoped per component) ===== */

.legal-document[b-hpj1924zjk] {
    background: #ffffff;
    border-radius: 0.85rem;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
    padding: 2.5rem 2.75rem;
    line-height: 1.65;
    color: #1e293b;
}

.legal-document__header[b-hpj1924zjk] {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.legal-document__header h1[b-hpj1924zjk] {
    font-size: 2rem;
    margin: 0 0 0.5rem;
    color: #0f172a;
    font-weight: 700;
}

.legal-document__updated[b-hpj1924zjk] {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0 0 0.85rem;
    font-style: italic;
}

.legal-document__intro[b-hpj1924zjk] {
    font-size: 1rem;
    color: #334155;
    margin: 0;
}

.legal-document section[b-hpj1924zjk] {
    margin-top: 1.5rem;
}

.legal-document section:first-of-type[b-hpj1924zjk] {
    margin-top: 1rem;
}

.legal-document h2[b-hpj1924zjk] {
    font-size: 1.25rem;
    color: #017DC0;
    margin: 0 0 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.legal-document h3[b-hpj1924zjk] {
    font-size: 1rem;
    color: #0f172a;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.legal-document p[b-hpj1924zjk] {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #334155;
}

.legal-document ul[b-hpj1924zjk] {
    margin: 0.25rem 0 0.75rem;
    padding-left: 1.4rem;
}

.legal-document li[b-hpj1924zjk] {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: #334155;
}

.legal-document strong[b-hpj1924zjk] {
    color: #0f172a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-document[b-hpj1924zjk] {
        padding: 1.5rem 1.25rem;
        border-radius: 0.6rem;
    }

    .legal-document__header h1[b-hpj1924zjk] {
        font-size: 1.5rem;
    }

    .legal-document h2[b-hpj1924zjk] {
        font-size: 1.1rem;
    }
}
/* /Pages/Transactions/RecalculatePerformancePage.razor.rz.scp.css */

/* Window Styles */
.reconc-modal .k-window[b-rvfwp2mg8d] {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(1, 125, 192, 0.15);
    color: #424242;
}

.reconc-modal .k-window .k-window-titlebar[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #017DC0 0%, #0169A8 100%);
    padding: 1rem 1.5rem;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
}

    .reconc-modal .k-window .k-window-titlebar .k-window-title[b-rvfwp2mg8d] {
        color: #ffffff !important;
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

.reconc-modal .k-window .k-window-content[b-rvfwp2mg8d] {
    background-color: #ffffff;
    color: #424242;
    padding: 0;
    overflow: hidden;
}

/* Main Container */
.window-content-wrapper[b-rvfwp2mg8d] {
    padding: 1.5rem;
}

.recalc-main-container[b-rvfwp2mg8d] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* User Info Card */
.user-info-card[b-rvfwp2mg8d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #017DC0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #495057;
}

    .user-info-card .k-icon[b-rvfwp2mg8d] {
        color: #017DC0;
        font-size: 1.1rem;
    }

/* Info Section */
.info-section[b-rvfwp2mg8d] {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.info-icon[b-rvfwp2mg8d] {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #017DC0 0%, #0169A8 100%);
    border-radius: 50%;
    color: white;
}

    .info-icon .k-icon[b-rvfwp2mg8d] {
        font-size: 1.25rem;
    }

.info-content[b-rvfwp2mg8d] {
    flex: 1;
}

.info-text[b-rvfwp2mg8d] {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #424242;
}

.warning-box[b-rvfwp2mg8d] {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
}

    .warning-box .k-icon[b-rvfwp2mg8d] {
        color: #856404;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .warning-box span[b-rvfwp2mg8d] {
        font-size: 0.9rem;
        color: #856404;
        line-height: 1.5;
    }

/* Action Section */
.action-section[b-rvfwp2mg8d] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

/* Button Styles */
.reconc-modal .btn-primary-custom[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #017DC0 0%, #0169A8 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(1, 125, 192, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .reconc-modal .btn-primary-custom:hover:not(:disabled)[b-rvfwp2mg8d] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(1, 125, 192, 0.4);
    }

    .reconc-modal .btn-primary-custom:active:not(:disabled)[b-rvfwp2mg8d] {
        transform: translateY(0);
    }

    .reconc-modal .btn-primary-custom:disabled[b-rvfwp2mg8d] {
        background: linear-gradient(135deg, #a8cbe6 0%, #90b8d8 100%) !important;
        cursor: not-allowed;
        opacity: 0.7;
        box-shadow: none;
    }

.reconc-modal .btn-help[b-rvfwp2mg8d] {
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: #495057 !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .reconc-modal .btn-help:hover[b-rvfwp2mg8d] {
        background-color: #e9ecef !important;
        border-color: #ced4da !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.reconc-modal .btn-secondary[b-rvfwp2mg8d] {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .reconc-modal .btn-secondary:hover[b-rvfwp2mg8d] {
        background-color: #5a6268 !important;
        transform: translateY(-2px);
    }

/* Alert Styles */
.reconc-modal .alert[b-rvfwp2mg8d] {
    border-radius: 8px;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

    .reconc-modal .alert .k-icon[b-rvfwp2mg8d] {
        font-size: 1.25rem;
        flex-shrink: 0;
    }

.reconc-modal .alert-info[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}

    .reconc-modal .alert-info .k-icon[b-rvfwp2mg8d] {
        color: #0c5460;
    }

.reconc-modal .alert-success[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

    .reconc-modal .alert-success .k-icon[b-rvfwp2mg8d] {
        color: #28a745;
    }

.reconc-modal .alert-danger[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

    .reconc-modal .alert-danger .k-icon[b-rvfwp2mg8d] {
        color: #dc3545;
    }

.reconc-modal .alert-warning[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffecb5 100%);
    color: #856404;
}

    .reconc-modal .alert-warning .k-icon[b-rvfwp2mg8d] {
        color: #ffc107;
    }

/* Estilos para la vista detallada */
.details-header[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #017DC0;
    padding: 1.25rem 1.5rem;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: 0;
}

    .details-header h5[b-rvfwp2mg8d] {
        color: #017DC0;
        font-weight: 600;
        font-size: 1.25rem;
        margin: 0;
    }

    .details-header .text-muted[b-rvfwp2mg8d] {
        color: #6c757d !important;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }

        .details-header .text-muted .k-icon[b-rvfwp2mg8d] {
            color: #017DC0;
            font-size: 1rem;
        }

    .details-header .d-flex[b-rvfwp2mg8d] {
        flex-wrap: wrap;
        gap: 1rem;
    }

.summary-cards[b-rvfwp2mg8d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-card[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #017DC0 0%, #0169A8 100%);
    color: white;
    padding: 1.5rem 1.25rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(1, 125, 192, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

    .summary-card:hover[b-rvfwp2mg8d] {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(1, 125, 192, 0.35);
    }

.summary-value[b-rvfwp2mg8d] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: white;
    display: block;
}

.summary-label[b-rvfwp2mg8d] {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    display: block;
    line-height: 1.4;
}

.details-container[b-rvfwp2mg8d] {
    max-height: calc(90vh - 250px);
    overflow-y: auto;
    padding-right: 10px;
}

.group-card[b-rvfwp2mg8d] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #f8f9fa;
}

.group-header[b-rvfwp2mg8d] {
    padding: 1rem;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    border-bottom: 1px solid #dee2e6;
    border-radius: 8px 8px 0 0;
}

.group-title[b-rvfwp2mg8d] {
    margin: 0 0 0.5rem 0;
    color: #017DC0;
    font-weight: 600;
}

.group-info[b-rvfwp2mg8d] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

    .group-info .badge[b-rvfwp2mg8d] {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }

.transactions-table-container[b-rvfwp2mg8d] {
    overflow-x: auto;
    padding: 0;
}

.transactions-table[b-rvfwp2mg8d] {
    margin: 0;
    font-size: 0.85rem;
    background: white;
}

    .transactions-table th[b-rvfwp2mg8d] {
        background-color: #017DC0;
        color: white;
        border: none;
        font-weight: 500;
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .transactions-table td[b-rvfwp2mg8d] {
        padding: 0.5rem;
        border-bottom: 1px solid #dee2e6;
        white-space: nowrap;
        vertical-align: middle;
    }

    .transactions-table tbody tr:hover[b-rvfwp2mg8d] {
        background-color: #f5f5f5;
    }

.no-data[b-rvfwp2mg8d] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .details-header[b-rvfwp2mg8d] {
        padding: 1rem;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }

        .details-header h5[b-rvfwp2mg8d] {
            font-size: 1.1rem;
        }

        .details-header .d-flex[b-rvfwp2mg8d] {
            flex-direction: column;
            align-items: flex-start !important;
        }

    .summary-cards[b-rvfwp2mg8d] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .summary-card[b-rvfwp2mg8d] {
        min-height: 90px;
        padding: 1.25rem 1rem;
    }

    .summary-value[b-rvfwp2mg8d] {
        font-size: 1.75rem;
    }

    .summary-label[b-rvfwp2mg8d] {
        font-size: 0.85rem;
    }

    .group-info[b-rvfwp2mg8d] {
        flex-direction: column;
    }

        .group-info .badge[b-rvfwp2mg8d] {
            align-self: flex-start;
        }

    .transactions-table[b-rvfwp2mg8d] {
        font-size: 0.75rem;
    }

        .transactions-table th[b-rvfwp2mg8d],
        .transactions-table td[b-rvfwp2mg8d] {
            padding: 0.4rem 0.3rem;
        }
}

@media (max-width: 576px) {
    .details-header[b-rvfwp2mg8d] {
        padding: 0.875rem;
        margin: -1.5rem -1.5rem 0.875rem -1.5rem;
    }

        .details-header h5[b-rvfwp2mg8d] {
            font-size: 1rem;
        }

    .summary-cards[b-rvfwp2mg8d] {
        gap: 0.5rem;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .summary-card[b-rvfwp2mg8d] {
        min-height: 80px;
        padding: 1rem 0.75rem;
    }

    .summary-value[b-rvfwp2mg8d] {
        font-size: 1.5rem;
    }

    .summary-label[b-rvfwp2mg8d] {
        font-size: 0.75rem;
    }

    .details-container[b-rvfwp2mg8d] {
        max-height: calc(90vh - 200px);
    }

    .transactions-table th[b-rvfwp2mg8d],
    .transactions-table td[b-rvfwp2mg8d] {
        font-size: 0.7rem;
        padding: 0.3rem 0.2rem;
    }
}

/* Scrollbar personalizado */
.details-container[b-rvfwp2mg8d]::-webkit-scrollbar {
    width: 8px;
}

.details-container[b-rvfwp2mg8d]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.details-container[b-rvfwp2mg8d]::-webkit-scrollbar-thumb {
    background: #017DC0;
    border-radius: 4px;
}

    .details-container[b-rvfwp2mg8d]::-webkit-scrollbar-thumb:hover {
        background: #0169A8;
    }

.transactions-table-container[b-rvfwp2mg8d]::-webkit-scrollbar {
    height: 6px;
}

.transactions-table-container[b-rvfwp2mg8d]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.transactions-table-container[b-rvfwp2mg8d]::-webkit-scrollbar-thumb {
    background: #017DC0;
    border-radius: 3px;
}

/* Removed duplicate details header rule - consolidated above */

/* Responsive Adjustments for Main Container */
@media (max-width: 576px) {
    .window-content-wrapper[b-rvfwp2mg8d] {
        padding: 1rem;
    }

    .recalc-main-container[b-rvfwp2mg8d] {
        gap: 1rem;
    }

    .info-section[b-rvfwp2mg8d] {
        flex-direction: column;
        padding: 1rem;
    }

    .action-section[b-rvfwp2mg8d] {
        flex-direction: column;
    }

    .btn-primary-custom[b-rvfwp2mg8d],
    .btn-help[b-rvfwp2mg8d] {
        width: 100%;
        justify-content: center;
    }

    .alert[b-rvfwp2mg8d] {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

/* ===================================
       Confirmation Dialog Styles
       =================================== */

/* Dialog Container */
.confirm-dialog .k-dialog[b-rvfwp2mg8d] {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(1, 125, 192, 0.25);
    border: none;
    overflow: hidden;
}

/* Dialog Title */
.confirm-dialog .k-dialog-titlebar[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #017DC0 0%, #0169A8 100%);
    border-bottom: none;
    padding: 1.25rem 1.5rem;
    border-radius: 12px 12px 0 0;
}

.dialog-title-content[b-rvfwp2mg8d] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

    .dialog-title-content .k-icon[b-rvfwp2mg8d] {
        font-size: 1.5rem;
        color: #fff3cd;
    }

/* Dialog Content */
.confirm-dialog .k-dialog-content[b-rvfwp2mg8d] {
    padding: 0;
    background: #ffffff;
}

.dialog-body[b-rvfwp2mg8d] {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dialog-message[b-rvfwp2mg8d] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-message[b-rvfwp2mg8d] {
    font-size: 1rem;
    color: #424242;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.warning-message[b-rvfwp2mg8d] {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffecb5 100%);
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.15);
}

    .warning-message .k-icon[b-rvfwp2mg8d] {
        color: #856404;
        font-size: 1.25rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .warning-message span[b-rvfwp2mg8d] {
        font-size: 0.95rem;
        color: #856404;
        line-height: 1.5;
        font-weight: 500;
    }

.objective-message[b-rvfwp2mg8d] {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    padding-left: 0.25rem;
}

.user-execution-info[b-rvfwp2mg8d] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #017DC0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #495057;
    box-shadow: 0 2px 6px rgba(1, 125, 192, 0.1);
}

    .user-execution-info .k-icon[b-rvfwp2mg8d] {
        color: #017DC0;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .user-execution-info strong[b-rvfwp2mg8d] {
        color: #017DC0;
        font-weight: 600;
    }

/* Dialog Actions */
.confirm-dialog .k-dialog-actions[b-rvfwp2mg8d] {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.dialog-actions[b-rvfwp2mg8d] {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    width: 100%;
}

/* Confirm Button */
.btn-confirm-dialog[b-rvfwp2mg8d] {
    background: linear-gradient(135deg, #017DC0 0%, #0169A8 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.75rem 1.75rem !important;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(1, 125, 192, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-confirm-dialog:hover[b-rvfwp2mg8d] {
        transform: translateY(-2px);
        box-shadow: 0 5px 16px rgba(1, 125, 192, 0.4);
    }

    .btn-confirm-dialog:active[b-rvfwp2mg8d] {
        transform: translateY(0);
    }

    .btn-confirm-dialog .k-icon[b-rvfwp2mg8d] {
        font-size: 1.1rem;
    }

/* Cancel Button */
.btn-cancel-dialog[b-rvfwp2mg8d] {
    background-color: #ffffff !important;
    border: 2px solid #dee2e6 !important;
    color: #6c757d !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-cancel-dialog:hover[b-rvfwp2mg8d] {
        background-color: #f8f9fa !important;
        border-color: #ced4da !important;
        color: #495057 !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .btn-cancel-dialog:active[b-rvfwp2mg8d] {
        transform: translateY(0);
    }

    .btn-cancel-dialog .k-icon[b-rvfwp2mg8d] {
        font-size: 1.1rem;
    }

/* Responsive Dialog */
@media (max-width: 576px) {
    .confirm-dialog .k-dialog[b-rvfwp2mg8d] {
        width: 95% !important;
        max-width: 95% !important;
    }

    .dialog-body[b-rvfwp2mg8d] {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .dialog-title-content[b-rvfwp2mg8d] {
        font-size: 1.1rem;
    }

        .dialog-title-content .k-icon[b-rvfwp2mg8d] {
            font-size: 1.3rem;
        }

    .main-message[b-rvfwp2mg8d] {
        font-size: 0.95rem;
    }

    .warning-message[b-rvfwp2mg8d],
    .user-execution-info[b-rvfwp2mg8d] {
        padding: 0.875rem 1rem;
    }

    .dialog-actions[b-rvfwp2mg8d] {
        flex-direction: column-reverse;
        gap: 0.5rem;
    }

    .btn-confirm-dialog[b-rvfwp2mg8d],
    .btn-cancel-dialog[b-rvfwp2mg8d] {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem !important;
    }
}

@media (max-width: 768px) {
    .confirm-dialog .k-dialog[b-rvfwp2mg8d] {
        width: 90% !important;
        max-width: 90% !important;
    }
}

 
/* /Pages/Transactions/Shifts.razor.rz.scp.css */
/* /Pages/Transactions/Transactions.razor.rz.scp.css */
/* /Pages/Transactions/Views/TransactionView.razor.rz.scp.css */
.k-grid[b-0j0drb4oll] {
    max-height: 94.5vh !important;
}
/* /Shared/About.razor.rz.scp.css */
/* ==================== ABOUT SECTION REDESIGN ==================== */

/* ==================== VARIABLES GLOBALES (por si no están declaradas) ==================== */
:root[b-pxs9izzurf] {
    --light-blue: #017DC0;
    --blue: #00b0ff;
    --gray: #666;
    --dark-gray: #333;
    --text: #333;
    --bg-light: #f8f9fa;
    --white: #fff;
}

/* ==================== ESTILOS BÁSICOS ==================== */
.about-section[b-pxs9izzurf] {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: transparent;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* ==================== HEADER DE ABOUT ==================== */
.about-header[b-pxs9izzurf] {
    background: linear-gradient(135deg, #181818 0%, #333 100%);
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--white);
    width: 100%;
    box-sizing: border-box;
}

    .about-header[b-pxs9izzurf]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('img/tech-pattern.svg') center/cover no-repeat;
        opacity: 0.05;
        z-index: 1;
    }

.logo[b-pxs9izzurf] {
    width: 200px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

    .logo:hover[b-pxs9izzurf] {
        transform: scale(1.05);
    }

.brand-name[b-pxs9izzurf] {
    font-family: 'League Spartan', sans-serif;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ==================== CONTENIDO PRINCIPAL ==================== */
.about-content[b-pxs9izzurf] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    box-sizing: border-box;
}

/* ==================== MISSION STATEMENT ==================== */
.mission-statement[b-pxs9izzurf] {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-family: 'League Spartan', sans-serif;
}

    .mission-statement h2[b-pxs9izzurf] {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--light-blue);
        margin-bottom: 1rem;
    }

    .mission-statement[b-pxs9izzurf]::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--light-blue), var(--blue));
        border-radius: 2px;
    }

.tagline[b-pxs9izzurf] {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ==================== ABOUT CARDS (3→2→1 columnas) ==================== */
.about-cards[b-pxs9izzurf] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.about-card[b-pxs9izzurf] {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

    .about-card:hover[b-pxs9izzurf] {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .about-card[b-pxs9izzurf]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--light-blue), var(--blue));
    }

.card-icon[b-pxs9izzurf] {
    width: 80px;
    height: 80px;
    background: rgba(1, 125, 192, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .card-icon i[b-pxs9izzurf] {
        font-size: 2rem;
        color: var(--light-blue);
    }

.about-card h3[b-pxs9izzurf] {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-blue);
    margin-bottom: 1rem;
}

.about-card p[b-pxs9izzurf] {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ==================== MODULE SHOWCASE ==================== */
.module-showcase[b-pxs9izzurf] {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
    text-align: center;
    box-sizing: border-box;
}

    .module-showcase h2[b-pxs9izzurf] {
        font-family: 'League Spartan', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--light-blue);
        margin-bottom: 1rem;
    }

    .module-showcase > p[b-pxs9izzurf] {
        color: var(--gray);
        margin-bottom: 2.5rem;
        font-size: 1.1rem;
        line-height: 1.6;
    }

/* ==================== MODULE CAROUSEL (APILABLE / RESPONSIVO) ==================== */
.module-carousel[b-pxs9izzurf] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.module-item[b-pxs9izzurf] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 120px;
    box-sizing: border-box;
}

    .module-item:hover[b-pxs9izzurf] {
        background: #e9f5fc;
        transform: translateY(-5px);
    }

    .module-item.active[b-pxs9izzurf] {
        background: #e9f5fc;
        box-shadow: 0 8px 20px rgba(1, 125, 192, 0.15);
    }

.module-icon[b-pxs9izzurf] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .module-icon img[b-pxs9izzurf] {
        width: 40px;
        height: 40px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.module-item:hover .module-icon img[b-pxs9izzurf],
.module-item.active .module-icon img[b-pxs9izzurf] {
    transform: scale(1.2);
}

.module-item h4[b-pxs9izzurf] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-blue);
    margin: 0;
}

.module-details[b-pxs9izzurf] {
    position: relative;
    height: 150px;
    overflow: hidden;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.module-detail[b-pxs9izzurf] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    box-sizing: border-box;
}

    .module-detail.visible[b-pxs9izzurf] {
        opacity: 1;
        transform: translateY(0);
    }

    .module-detail h3[b-pxs9izzurf] {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--light-blue);
        margin-bottom: 1rem;
    }

    .module-detail p[b-pxs9izzurf] {
        font-size: 1rem;
        color: var(--gray);
        line-height: 1.6;
    }

/* ==================== TESTIMONIALS ==================== */
.testimonials[b-pxs9izzurf] {
    margin-bottom: 4rem;
    text-align: center;
}

    .testimonials h2[b-pxs9izzurf] {
        font-family: 'League Spartan', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--light-blue);
        margin-bottom: 2rem;
    }

.testimonial-carousel[b-pxs9izzurf] {
    position: relative;
    padding: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-item[b-pxs9izzurf] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

    .testimonial-item.active[b-pxs9izzurf] {
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }

.testimonial-content[b-pxs9izzurf] {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
}

    .testimonial-content[b-pxs9izzurf]::before {
        content: '"';
        position: absolute;
        top: -30px;
        left: 20px;
        font-size: 6rem;
        color: var(--light-blue);
        opacity: 0.2;
        font-weight: 700;
    }

    .testimonial-content p[b-pxs9izzurf] {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        color: var(--dark-gray);
        font-style: italic;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

.testimonial-author[b-pxs9izzurf] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .testimonial-author strong[b-pxs9izzurf] {
        font-family: 'League Spartan', sans-serif;
        font-size: 1.1rem;
        color: var(--light-blue);
        margin-bottom: 0.2rem;
    }

    .testimonial-author span[b-pxs9izzurf] {
        font-size: 0.9rem;
        color: var(--gray);
    }

.testimonial-indicators[b-pxs9izzurf] {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.indicator[b-pxs9izzurf] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .indicator.active[b-pxs9izzurf] {
        background: var(--light-blue);
        transform: scale(1.2);
    }

/* ==================== CTA SECTION ==================== */
.cta-section[b-pxs9izzurf] {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

    .cta-section[b-pxs9izzurf]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('img/tech-dots.svg') center/cover no-repeat;
        opacity: 0.1;
        z-index: 1;
    }

    .cta-section h2[b-pxs9izzurf] {
        font-family: 'League Spartan', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }

    .cta-section p[b-pxs9izzurf] {
        color: #fff !important;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
        line-height: 1.6;
    }

.cta-button[b-pxs9izzurf] {
    display: inline-block;
    background: var(--white);
    color: var(--light-blue);
    font-family: 'League Spartan', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

    .cta-button:hover[b-pxs9izzurf] {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }

/* ==================== PLANS ==================== */
.plans[b-pxs9izzurf] {
    margin-bottom: 4rem;
    text-align: center;
}

    .plans h2[b-pxs9izzurf] {
        font-family: 'League Spartan', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--light-blue);
        margin-bottom: 2rem;
    }

.plans-grid[b-pxs9izzurf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.plan-item[b-pxs9izzurf] {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    box-sizing: border-box;
}

    .plan-item:hover[b-pxs9izzurf] {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .plan-item h3[b-pxs9izzurf] {
        font-family: 'League Spartan', sans-serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--light-blue);
        margin-bottom: 1rem;
    }

    .plan-item p[b-pxs9izzurf] {
        font-size: 1rem;
        color: var(--gray);
        line-height: 1.6;
    }

/* ==================== BREAKPOINTS RESPONSIVE ==================== */

/* Desktop grande (≥ 1200px): 3 columnas en .about-cards ya está por defecto */

/* Pantallas medianas (≤ 1200px): 2 columnas en .about-cards */
@media (max-width: 1200px) {
    .about-cards[b-pxs9izzurf] {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-statement h2[b-pxs9izzurf] {
        font-size: 2.2rem;
    }

    .brand-name[b-pxs9izzurf] {
        font-size: 2.2rem;
    }
}

/* Tablets (≤ 768px): 1 columna en .about-cards */
@media (max-width: 768px) {
    .about-content[b-pxs9izzurf] {
        padding: 2rem 1rem;
    }

    .about-cards[b-pxs9izzurf] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card[b-pxs9izzurf] {
        padding: 1.5rem;
    }

    .mission-statement h2[b-pxs9izzurf] {
        font-size: 1.8rem;
    }

    .module-carousel[b-pxs9izzurf] {
        gap: 1rem;
    }

    .module-item[b-pxs9izzurf] {
        width: 100px;
    }

    .cta-section h2[b-pxs9izzurf] {
        font-size: 1.8rem;
    }

    .tagline[b-pxs9izzurf] {
        font-size: 1rem;
    }
}

/* Móviles pequeños (≤ 480px): ajustes adicionales */
@media (max-width: 480px) {
    .about-content[b-pxs9izzurf] {
        padding: 1rem 0.75rem;
    }

    .logo[b-pxs9izzurf] {
        width: 180px;
    }

    .brand-name[b-pxs9izzurf] {
        font-size: 1.8rem;
    }

    .mission-statement h2[b-pxs9izzurf] {
        font-size: 1.6rem;
    }

    .tagline[b-pxs9izzurf] {
        font-size: 1rem;
    }

    .about-card[b-pxs9izzurf] {
        padding: 1.2rem;
    }

    .card-icon[b-pxs9izzurf] {
        width: 60px;
        height: 60px;
    }

    .module-item[b-pxs9izzurf] {
        width: 80px;
        padding: 1rem 0.5rem;
    }

    .module-icon[b-pxs9izzurf] {
        width: 50px;
        height: 50px;
    }

        .module-icon img[b-pxs9izzurf] {
            width: 30px;
            height: 30px;
        }

    .testimonial-content[b-pxs9izzurf] {
        padding: 1.5rem;
    }

        .testimonial-content p[b-pxs9izzurf] {
            font-size: 1rem;
        }

    .cta-button[b-pxs9izzurf] {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==================== ACCESIBILIDAD ==================== */
/* Reducir animaciones si el usuario prefiere movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .about-card[b-pxs9izzurf],
    .module-item[b-pxs9izzurf],
    .cta-button[b-pxs9izzurf] {
        transition: none;
    }
}

/* Modo alto contraste */
@media (prefers-contrast: high) {
    .about-card[b-pxs9izzurf] {
        border: 2px solid #000;
    }

    .module-showcase[b-pxs9izzurf] {
        border: 2px solid #000;
    }

    .testimonial-content[b-pxs9izzurf] {
        border: 2px solid #000;
    }
}

/* ==================== FIN ABOUT SECTION REDESIGN ==================== */
/* /Shared/Animations/SkeletonLoader.razor.rz.scp.css */
.skeleton-loader[b-0d3ghr0rwa] {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-wave-b-0d3ghr0rwa 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-wave-b-0d3ghr0rwa {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}
/* /Shared/CardComponent.razor.rz.scp.css */
.card[b-7ggcilp2z1] {
    width: calc(100% - 2rem);
    margin: 0 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.btn-zoom[b-7ggcilp2z1],
.btn-close[b-7ggcilp2z1] {
    height: 2.5rem;
    width: 2.5rem;
    justify-content: center;
    place-self: self-end;
    margin-top: 0.3rem !important;
    margin-right: 0.3rem !important;
    position: absolute;
    z-index: 1;
}

    .btn-zoom:hover[b-7ggcilp2z1] {
        transform: scale(1.3);
        transition: 0.5s ease;
    }

.btn-close[b-7ggcilp2z1] {
    outline: none !important;
}

.modal[b-7ggcilp2z1] {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.modal-dialog[b-7ggcilp2z1] {
    margin-top: 10%;
}

@media(max-width: 1280px) {
    .card[b-7ggcilp2z1] {
        width: calc(100% - 2rem);
    }
}

@media(max-width: 900px) {
    .card[b-7ggcilp2z1] {
        width: calc(100% - 2rem);
    }
}

@media(max-width: 700px) {
}

@media(max-width: 400px) {
    .card[b-7ggcilp2z1] {
        margin: 0 0.4rem;
        width: calc(100% - 0.8rem);
    }
}
/* /Shared/ConfirmationDialog.razor.rz.scp.css */
.overlay[b-588hdo6e1u] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Asegúrate de que este sea mayor que otros z-index en tu aplicación */
}

.dialog[b-588hdo6e1u] {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001; /* Asegúrate de que este sea mayor que el z-index del overlay */
    width: 300px;
    height: auto;
    overflow: auto;
}
/* /Shared/EmptyState.razor.rz.scp.css */
.empty-state-container[b-lm5w489r4t] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0.75rem;
    background-color: #f8f9fa; /* cool-gray-100 */
    border: 2px dashed #e2e8f0; /* cool-gray-300 */
    animation: fade-in-b-lm5w489r4t 0.8s ease-out;
}

.empty-state-icon[b-lm5w489r4t] {
    font-size: 3rem; /* Smaller */
    color: #017DC0; /* Custom blue */
    margin-bottom: 1.5rem;
    animation: subtle-bounce-b-lm5w489r4t 2.5s ease-in-out infinite;
}

.empty-state-title[b-lm5w489r4t] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748; /* cool-gray-800 */
    margin-bottom: 0.5rem;
}

.empty-state-message[b-lm5w489r4t] {
    font-size: 1rem;
    color: #718096; /* cool-gray-600 */
    max-width: 450px;
}

@keyframes fade-in-b-lm5w489r4t {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtle-bounce-b-lm5w489r4t {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
/* /Shared/IconComponent.razor.rz.scp.css */
/* /Shared/LoadingSpinner.razor.rz.scp.css */
.spinner_container[b-vdsrohozh2] {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    inset: 0;
}

.loader[b-vdsrohozh2] {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 9px;
    text-transform: uppercase;
}

.loader-circle[b-vdsrohozh2] {
    border: 3px solid #e0e0e0;
    border-top: 3px solid #00a2ff95;
    border-bottom: 3px solid #00a2ff95;
    border-radius: 50%;
    width: 80%;
    height: 80%;
    position: absolute;
    animation: pendulo-giro-b-vdsrohozh2 4.29s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.loader-text[b-vdsrohozh2] {
    position: absolute;
    text-align: center;
    background: linear-gradient(to left, #333, #333, rgba(180, 180, 180, 0.7), #333, #333);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: light-effect-b-vdsrohozh2 2s linear infinite;
    background-size: 200% 100%;
}

@keyframes pendulo-giro-b-vdsrohozh2 {
    0%, 29.1% {
        animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    }

    0% {
        transform: rotate(0deg);
    }

    3.64% {
        transform: rotate(60deg);
    }

    7.28% {
        transform: rotate(-60deg);
    }

    10.92% {
        transform: rotate(50deg);
    }

    14.56% {
        transform: rotate(-50deg);
    }

    18.2% {
        transform: rotate(40deg);
    }

    21.84% {
        transform: rotate(-40deg);
    }

    25.48% {
        transform: rotate(30deg);
    }

    29.1% {
        transform: rotate(0deg);
    }

    29.11%, 100% {
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }

    29.11% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(2160deg);
    }
}

@keyframes light-effect-b-vdsrohozh2 {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}
/* /Shared/LoadingSpinnerProcess.razor.rz.scp.css */
.spinner_container[b-m0co6opq5p] {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    inset: 0;
}

.loader[b-m0co6opq5p] {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 11px;
    position: relative;
}

.loader-circle[b-m0co6opq5p] {
    border: 2px solid #e0e0e0;
    border-bottom: 3px solid #00a2ff95;
    border-radius: 50%;
    width: 80%;
    height: 80%;
    animation: spin-b-m0co6opq5p 1s linear infinite;
    position: absolute;
}

.loader-image[b-m0co6opq5p] {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    position: absolute;
}

@keyframes spin-b-m0co6opq5p {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */



/* /Shared/NavTabs.razor.rz.scp.css */
h5[b-leg54uzw08] {
    margin: 0;
    padding: 0;
}

ul.nav[b-leg54uzw08] {
    margin-top: 1rem;
}

a.nav-link h5[b-leg54uzw08] {
    color: #333;
}

a.nav-link[b-leg54uzw08] {
    padding: 0.6rem 1rem;
}

a.my-active-link[b-leg54uzw08] {
    background-color: #262626;
}

    a.my-active-link h5[b-leg54uzw08] {
        color: #F0F0F0;
    }
/* /Shared/PublicLayout.razor.rz.scp.css */
/* ===== Public layout (legal pages: privacy / terms / about) ===== */

[b-5vlced5763] .public-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: transparent;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    position: relative;
    isolation: isolate;
}

[b-5vlced5763] .public-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('/img/bg.jpg') center center / cover no-repeat #0a1d3d;
    z-index: -1;
    pointer-events: none;
}

[b-5vlced5763] .public-page::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.18);
    z-index: -1;
    pointer-events: none;
}

[b-5vlced5763] .public-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #181818 0%, #2c2c2c 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

[b-5vlced5763] .public-header__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #ffffff;
    flex-shrink: 0;
}

[b-5vlced5763] .public-header__logo {
    width: 36px;
    height: auto;
}

[b-5vlced5763] .public-header__brand-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    letter-spacing: 0.2px;
}

[b-5vlced5763] .public-header__nav {
    display: flex;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

[b-5vlced5763] .public-header__nav-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    padding: 0.45rem 0.85rem;
    border-radius: 0.4rem;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background-color 0.18s ease, color 0.18s ease;
}

[b-5vlced5763] .public-header__nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

[b-5vlced5763] .public-header__nav-link.active {
    color: #ffffff;
    background: rgba(1, 125, 192, 0.85);
}

[b-5vlced5763] .public-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

[b-5vlced5763] .public-header__lang {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.4rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

[b-5vlced5763] .public-header__lang-btn {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

[b-5vlced5763] .public-header__lang-btn + .public-header__lang-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

[b-5vlced5763] .public-header__lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

[b-5vlced5763] .public-header__lang-btn.active {
    background: #017DC0;
    color: #fff;
}

[b-5vlced5763] .public-header__login-btn {
    background-color: #017DC0;
    color: #fff;
    border: none;
    padding: 0.5rem 1.1rem;
    border-radius: 0.45rem;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background-color 0.18s ease, transform 0.15s ease;
}

[b-5vlced5763] .public-header__login-btn:hover {
    background-color: #0269a4;
    transform: translateY(-1px);
}

[b-5vlced5763] .public-main {
    flex: 1;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

[b-5vlced5763] .public-footer {
    background: linear-gradient(135deg, #181818 0%, #2c2c2c 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 1rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[b-5vlced5763] .public-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

[b-5vlced5763] .public-footer__links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

[b-5vlced5763] .public-footer__links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.15s ease;
}

[b-5vlced5763] .public-footer__links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    [b-5vlced5763] .public-header {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand actions"
            "nav nav";
        gap: 0.5rem 0.75rem;
        padding: 0.6rem 0.9rem;
    }

    [b-5vlced5763] .public-header__brand {
        grid-area: brand;
        min-width: 0;
    }

    [b-5vlced5763] .public-header__actions {
        grid-area: actions;
        gap: 0.5rem;
    }

    [b-5vlced5763] .public-header__nav {
        grid-area: nav;
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-top: 0.4rem;
        margin-top: 0.1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    [b-5vlced5763] .public-header__nav-link {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.35rem 0.7rem;
    }

    [b-5vlced5763] .public-header__login-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.85rem;
    }

    [b-5vlced5763] .public-main {
        padding: 1.25rem 1rem 2rem;
    }
}

@media (max-width: 480px) {
    [b-5vlced5763] .public-header__brand-name {
        display: none;
    }

    [b-5vlced5763] .public-header__logo {
        width: 32px;
    }

    [b-5vlced5763] .public-header__lang-btn {
        padding: 0.3rem 0.55rem;
        font-size: 0.75rem;
    }
}
/* /Shared/SavingSpinner.razor.rz.scp.css */
.spinner_container[b-n1ohw4belf] {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    inset: 0;
}

.loader[b-n1ohw4belf] {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 9px;
    text-transform: uppercase;
}

.loader-circle[b-n1ohw4belf] {
    border: 3px solid #e0e0e0;
    border-top: 3px solid #00a2ff95;
    border-bottom: 3px solid #00a2ff95;
    border-radius: 50%;
    width: 80%;
    height: 80%;
    position: absolute;
    animation: pendulo-giro-b-n1ohw4belf 4.29s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.loader-text[b-n1ohw4belf] {
    position: absolute;
    text-align: center;
    background: linear-gradient(to left, #333, #333, rgba(180, 180, 180, 0.7), #333, #333);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: light-effect-b-n1ohw4belf 2s linear infinite;
    background-size: 200% 100%;
    font-size : 9px;
}

@keyframes pendulo-giro-b-n1ohw4belf {
    0%, 29.1% {
        animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    }

    0% {
        transform: rotate(0deg);
    }

    3.64% {
        transform: rotate(60deg);
    }

    7.28% {
        transform: rotate(-60deg);
    }

    10.92% {
        transform: rotate(50deg);
    }

    14.56% {
        transform: rotate(-50deg);
    }

    18.2% {
        transform: rotate(40deg);
    }

    21.84% {
        transform: rotate(-40deg);
    }

    25.48% {
        transform: rotate(30deg);
    }

    29.1% {
        transform: rotate(0deg);
    }

    29.11%, 100% {
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }

    29.11% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(2160deg);
    }
}

@keyframes light-effect-b-n1ohw4belf {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}
/* /Shared/SidebarMenu.razor.rz.scp.css */
.sidebar-toggle[b-krr8myixra] {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 24px;
    height: 20px;
    background: transparent;
    color: #87CEEB; /* Azul suave / SkyBlue */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

@media (max-width: 767px) {
    .sidebar-toggle[b-krr8myixra] {
        display: none !important;
    }
}

.sidebar-toggle:hover[b-krr8myixra] {
    color: #00B5E8;
    transform: scale(1.1);
    opacity: 1;
}

.sidebar-toggle svg[b-krr8myixra] {
    width: 20px;
    height: 20px;
}

.compact-sidebar .sidebar-toggle[b-krr8myixra] {
    right: 23px; /* (70 - 24) / 2 */
}

.menu__logo-container[b-krr8myixra] {
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.menu__logo.mini[b-krr8myixra] {
    width: 45px;
    height: 55px;
}

.menu__bottom.collapsed[b-krr8myixra] {
    flex-direction: column !important;
    align-items: center !important;
    padding: 10px 0 !important;
    gap: 15px;
}

.menu__bottom.collapsed .bottom-left[b-krr8myixra] {
    margin: 0 !important;
    font-size: 18px;
}

.menu__bottom.collapsed .plan-name[b-krr8myixra] {
    justify-content: center;
    width: 100%;
}

.menu__bottom.collapsed .plan-text[b-krr8myixra] {
    font-size: 10px;
}
 
.plan-name[b-krr8myixra] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.plan-text[b-krr8myixra] {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.5px;
}



/* Reglas del sidebar compacto SOLO en desktop/tablet */
@media (min-width: 768px) {
    .compact-sidebar[b-krr8myixra] {
        width: 70px !important;
        min-width: 70px !important;
    }

    .compact-sidebar .menu__nav-buttons[b-krr8myixra] {
        padding: 1rem 0 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .compact-sidebar[b-krr8myixra]  .nav-link {
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 0 !important;
        margin: 0 auto !important;
        display: flex !important;
        background: transparent;
        transition: all 0.3s ease;
    }

    .compact-sidebar[b-krr8myixra]  .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.1);
    }

    .compact-sidebar[b-krr8myixra]  .nav-link.active {
        background: #017DC0 !important;
    }

    .compact-sidebar .nav-item__title[b-krr8myixra] {
        display: none;
    }

    .compact-sidebar .nav-item[b-krr8myixra] {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .compact-sidebar[b-krr8myixra]  img.nav-icon,
    .compact-sidebar[b-krr8myixra]  svg.nav-icon {
        width: 1.8rem !important;
        height: 1.8rem !important;
        object-fit: contain !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 767px) {
    /* En móvil el sidebar actúa como footer (ocupa 100% del ancho) */
    .compact-sidebar[b-krr8myixra],
    .side-bar__menu[b-krr8myixra] {
        width: 100% !important;
        min-width: 100% !important;
        height: auto !important; /* Quitar height: 100% del layout original para que suba */
        justify-content: flex-start !important; /* Alinear mas arriba */
    }

    /* Los títulos NUNCA se muestran en el footer de móvil */
    .nav-item__title[b-krr8myixra] {
        display: none !important;
    }

    /* Ocultar elementos desktop que generarían espacio muerto */
    .menu__logo-container[b-krr8myixra],
    .sidebar-toggle[b-krr8myixra],
    .menu__nav-buttons[b-krr8myixra]::before {
        display: none !important;
    }

    /* Reglas para el contenedor UL en móvil */
    .menu__nav-buttons[b-krr8myixra] {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-evenly !important; 
        align-items: center !important;
        flex-wrap: nowrap !important; /* Everything exactly on 1 row */
        width: 100% !important;
        margin: 0 !important;
        padding: 0.25rem 0.25rem 1.8rem 0.25rem !important; /* Movido aun mas arriba */
        gap: 0 !important;
        box-sizing: border-box !important;
    }

    /* Reglas para items individuales en móvil (flex 1 para que todos quepan) */
    .nav-item[b-krr8myixra] {
        flex: 1 1 0 !important; 
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        min-width: 0 !important;
    }
    
    /* El enlace mantiene tamaño cuadrado sin salirse */
    .menu__nav-buttons .nav-link[b-krr8myixra] {
        width: 100% !important;
        max-width: 44px !important;
        height: auto !important;
        aspect-ratio: 1 / 1; /* Keep it perfectly square */
        border-radius: 50% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    [b-krr8myixra] img.nav-icon,
    [b-krr8myixra] svg.nav-icon {
        width: 1.8rem !important;
        height: 1.8rem !important;
        object-fit: contain !important;
        margin: 0 !important;
    }
}
 
/* /Shared/TopBar.razor.rz.scp.css */
.navbar-container[b-6g57p37p6p] {
    width: 100%;
}

/* Main navbar */
.navbar[b-6g57p37p6p] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important; /* Mantiene la barra en un solo renglon principal */
    width: 100%;
    position: relative;
    padding: 0.5rem;
}

.navbar-buttons-container[b-6g57p37p6p] {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
}

.navbar-buttons-container .navbar-nav[b-6g57p37p6p] {
    display: flex;
    flex-wrap: wrap; /* Aqui es donde permitimos que bajen si de plano no caben */
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem; /* Separacion por defecto */
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.navbar-container__right[b-6g57p37p6p] {
    display: flex;
    align-items: center; 
    flex-shrink: 0; /* Para que el perfil nunca se encoja ni se corte */
    gap: 0.5rem;
    margin-left: auto;
    padding-left: 0.5rem;
    position: static;
}

.notification-component[b-6g57p37p6p] {
    display: flex;
    align-items: center;
    z-index: 1000;
}

.nav-item[b-6g57p37p6p] {
    display: flex;
    flex: 0 1 auto; /* No forzar a ocupar mas espacio, pero permitir encoger si es necesario */
}

.nav-item .nav-link[b-6g57p37p6p] {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

[b-6g57p37p6p] img.nav-icon,
[b-6g57p37p6p] svg.nav-icon {
    width: 1.8rem !important;
    height: 1.8rem !important;
    object-fit: contain !important;
    margin: 0 !important;
}

.nav-item__title[b-6g57p37p6p] {
    font-size: 0.875rem;
}

.user-details[b-6g57p37p6p] {
    display: flex;
    flex-direction: column;
}

.user-email[b-6g57p37p6p] {
    font-size: 1.05rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
}

.user-role[b-6g57p37p6p] {
    font-size: 0.8rem;
    color: #004085;
    line-height: 1;
    margin-top: 0.125rem;
    white-space: nowrap;
}

/* Tablet / Desktop pequenos */
@media (max-width: 1024px) {
    .navbar-buttons-container .navbar-nav[b-6g57p37p6p] {
        gap: 0.25rem; /* Juntamos los iconos un poco mas */
    }

    .nav-item__title[b-6g57p37p6p] {
        font-size: 0.7rem;
    }

    .nav-item .nav-link[b-6g57p37p6p] {
        padding: 0.3rem 0.4rem;
        font-size: 0.8rem;
    }

    .user-email[b-6g57p37p6p] {
        font-size: 0.8rem !important;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .user-role[b-6g57p37p6p] {
        font-size: 0.65rem !important;
    }
}

/* Telefonos / Tablets angostas */
@media (max-width: 821px) {
    .nav-item__title[b-6g57p37p6p] {
        display: none !important; /* Ocultamos el texto para ahorrar MUCHO espacio */
    }
    
    .user-details[b-6g57p37p6p] {
        display: none !important; /* Ocultamos el texto del perfil */
    }

    .navbar-buttons-container .navbar-nav[b-6g57p37p6p] {
        /* Distribuimos el espacio eficientemente y los juntamos al maximo antes de romper fila */
        justify-content: space-evenly; 
        gap: 0.2rem; /* Separacion minima */
    }

    .nav-item[b-6g57p37p6p] {
        /* Este pequeno "truco" hace que intenten ocupar todo el ancho uniformemente 
           y solo si de verdad no entran en su tamano minimo (38px), caigan al segundo renglon */
        flex: 1 1 0%; 
        min-width: 38px;
        max-width: 48px;
    }

    .nav-item .nav-link[b-6g57p37p6p] {
        width: 100%;
        min-width: 38px;
        min-height: 38px;
        aspect-ratio: 1/1; /* Cuadrados perfectos */
        padding: 0.2rem;
        gap: 0;
    }

    [b-6g57p37p6p] img.nav-icon,
    [b-6g57p37p6p] svg.nav-icon {
        width: 1.8rem !important;
        height: 1.8rem !important;
    }
}

/* Mini Telefonos (iPhone SE) */
@media (max-width: 575.98px) {
    .navbar-buttons-container .navbar-nav[b-6g57p37p6p] {
        gap: 0.1rem; /* Juntamos mas al limite */
    }

    .nav-item[b-6g57p37p6p] {
        min-width: 34px; /* Permite iconos aun mas pequenos para que quepan */
        max-width: 44px;
    }

    .nav-item .nav-link[b-6g57p37p6p] {
        min-width: 44px;
        min-height: 44px;
        font-size: 0.75rem;
    }

    [b-6g57p37p6p] img.nav-icon,
    [b-6g57p37p6p] svg.nav-icon {
        width: 1.8rem !important;
        height: 1.8rem !important;
    }
    
    .navbar-container__right[b-6g57p37p6p] {
        padding-left: 0.2rem;
        gap: 0.2rem;
    }
}

@media (max-width: 480px) {
    .navbar-container__right > *:not(.user-dropdown)[b-6g57p37p6p] {
        display: none;
    }

    .user-dropdown[b-6g57p37p6p] {
        display: block !important;
    }

    .user-toggle[b-6g57p37p6p] {
        padding: 0.25rem !important;
    }

    .custom-avatar[b-6g57p37p6p] {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
}
/* /Shared/Widgets/EventWidget.razor.rz.scp.css */
.event-read[b-76mpwyyi7n] {
    background-color: #e0e0e0;
}

.event-unread[b-76mpwyyi7n] {
    background-color: white;
}

.notification-info[b-76mpwyyi7n] {
    border-left: 8px solid var(--info-color);
}

.notification-alert[b-76mpwyyi7n] {
    border-left: 8px solid var(--alert-color);
}

.notification-error[b-76mpwyyi7n] {
    border-left: 8px solid var(--error-color);
}

.info[b-76mpwyyi7n],
.alert[b-76mpwyyi7n],
.error[b-76mpwyyi7n],
.success[b-76mpwyyi7n] {
    display: block;
    color: white;
    border-radius: 0.3rem;
    height: 3rem;
    width: 7rem;
    align-content: center;
    text-align: center;
    font-weight: 600;
}

.info[b-76mpwyyi7n] {
    background-color: var(--info-color);
}

.alert[b-76mpwyyi7n] {
    background-color: var(--alert-color);
}

.error[b-76mpwyyi7n] {
    background-color: var(--error-color);
}

.success[b-76mpwyyi7n] {
    background-color: var(--success-color);
}

.info-cricle[b-76mpwyyi7n] {
    background-color: var(--info-color);
}

.error-cricle[b-76mpwyyi7n] {
    background-color: var(--error-color);
}

.alert-cricle[b-76mpwyyi7n] {
    background-color: var(--alert-color);
}

.small-text[b-76mpwyyi7n] {
    font-size: 0.75rem;
}
/* /TestPages/LogViewerView.razor.rz.scp.css */
