/* /Components/Pages/DeviceConfigurationAdmin.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════════
   BMC Device Configuration Management - Professional Theme
   ═══════════════════════════════════════════════════════════════════ */

.configuration-admin-container[b-xy2ux9unc3] {
    padding: 2rem;
    background: #f5f7fa;
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════════════════════════ */

.page-header[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

    .page-header h2[b-xy2ux9unc3] {
        margin: 0 0 0.5rem 0;
        font-size: 2.25rem;
        font-weight: 700;
    }

    .page-header .subtitle[b-xy2ux9unc3] {
        margin: 0;
        opacity: 0.95;
        font-size: 1.1rem;
        font-weight: 300;
    }

/* ═══════════════════════════════════════════════════════════════════
   STATISTICS CARDS
   ═══════════════════════════════════════════════════════════════════ */

.stats-cards[b-xy2ux9unc3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-xy2ux9unc3] {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .stat-card:hover[b-xy2ux9unc3] {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.stat-icon[b-xy2ux9unc3] {
    font-size: 3.5rem;
    line-height: 1;
}

.stat-content h3[b-xy2ux9unc3] {
    margin: 0;
    font-size: 2.5rem;
    color: #2d3748;
    font-weight: 700;
}

.stat-content p[b-xy2ux9unc3] {
    margin: 0.5rem 0 0 0;
    color: #718096;
    font-size: 1rem;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   FILTERS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.filters-section[b-xy2ux9unc3] {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group[b-xy2ux9unc3] {
    flex: 1;
    min-width: 220px;
}

    .filter-group label[b-xy2ux9unc3] {
        display: block;
        margin-bottom: 0.75rem;
        font-weight: 600;
        color: #2d3748;
        font-size: 0.95rem;
    }

    .filter-group select[b-xy2ux9unc3],
    .filter-group input[type="text"][b-xy2ux9unc3] {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.2s ease;
        background: white;
    }

        .filter-group select:focus[b-xy2ux9unc3],
        .filter-group input[type="text"]:focus[b-xy2ux9unc3] {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

.btn-refresh[b-xy2ux9unc3] {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .btn-refresh:hover[b-xy2ux9unc3] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

/* ═══════════════════════════════════════════════════════════════════
   BULK ACTIONS BAR
   ═══════════════════════════════════════════════════════════════════ */

.bulk-actions[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.btn-bulk[b-xy2ux9unc3] {
    padding: 0.875rem 1.75rem;
    background: white;
    color: #38a169;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .btn-bulk:hover[b-xy2ux9unc3] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.selected-count[b-xy2ux9unc3] {
    margin-left: auto;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   DEVICES TABLE
   ═══════════════════════════════════════════════════════════════════ */

.devices-table-container[b-xy2ux9unc3] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.devices-table[b-xy2ux9unc3] {
    width: 100%;
    border-collapse: collapse;
}

    .devices-table thead[b-xy2ux9unc3] {
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    }

    .devices-table th[b-xy2ux9unc3] {
        padding: 1.25rem 1rem;
        text-align: left;
        font-weight: 700;
        color: #2d3748;
        border-bottom: 3px solid #e2e8f0;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .devices-table td[b-xy2ux9unc3] {
        padding: 1.25rem 1rem;
        border-bottom: 1px solid #f7fafc;
        vertical-align: middle;
    }

    .devices-table tbody tr[b-xy2ux9unc3] {
        transition: all 0.2s ease;
    }

        .devices-table tbody tr:hover[b-xy2ux9unc3] {
            background: #f7fafc;
            transform: scale(1.002);
        }

        .devices-table tbody tr.row-offline[b-xy2ux9unc3] {
            opacity: 0.5;
            background: #fef5f5;
        }

        .devices-table tbody tr.row-editing[b-xy2ux9unc3] {
            background: #fef9e7;
            box-shadow: inset 0 0 0 2px #f6e05e;
        }

/* ═══════════════════════════════════════════════════════════════════
   TABLE CONTENT STYLING
   ═══════════════════════════════════════════════════════════════════ */

.device-info[b-xy2ux9unc3] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .device-info strong[b-xy2ux9unc3] {
        font-size: 1.05rem;
        color: #2d3748;
        font-weight: 600;
    }

    .device-info small[b-xy2ux9unc3] {
        font-size: 0.85rem;
        color: #a0aec0;
        font-family: 'Courier New', monospace;
    }

.site-info[b-xy2ux9unc3] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .site-info span[b-xy2ux9unc3] {
        font-weight: 600;
        color: #4a5568;
    }

    .site-info small[b-xy2ux9unc3] {
        font-size: 0.85rem;
        color: #a0aec0;
    }

/* ═══════════════════════════════════════════════════════════════════
   STATUS BADGES
   ═══════════════════════════════════════════════════════════════════ */

.status-badge[b-xy2ux9unc3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

    .status-badge.online[b-xy2ux9unc3] {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        color: #155724;
        box-shadow: 0 2px 8px rgba(72, 187, 120, 0.2);
    }

    .status-badge.offline[b-xy2ux9unc3] {
        background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
        color: #721c24;
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
    }

/* ═══════════════════════════════════════════════════════════════════
   VALUE STYLING
   ═══════════════════════════════════════════════════════════════════ */

.default-value[b-xy2ux9unc3] {
    color: #a0aec0;
    font-style: italic;
    font-weight: 500;
}

.custom-value[b-xy2ux9unc3] {
    color: #38a169;
    font-weight: 700;
    font-size: 1.05rem;
}

.capacity-display[b-xy2ux9unc3] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.override-badge[b-xy2ux9unc3] {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
    color: #4a5568;
    border: 2px solid #cbd5e0;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(203, 213, 224, 0.4);
}

.sync-info[b-xy2ux9unc3] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .sync-info span[b-xy2ux9unc3] {
        color: #4a5568;
        font-weight: 500;
    }

.sync-count[b-xy2ux9unc3] {
    font-size: 0.85rem;
    color: #a0aec0;
}

.no-sync[b-xy2ux9unc3] {
    color: #e53e3e;
    font-style: italic;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   INPUT FIELDS (INLINE EDITING)
   ═══════════════════════════════════════════════════════════════════ */

.input-small[b-xy2ux9unc3] {
    width: 100px;
    padding: 0.6rem;
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

    .input-small:focus[b-xy2ux9unc3] {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.capacity-input-group[b-xy2ux9unc3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label[b-xy2ux9unc3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

    .checkbox-label input[type="checkbox"][b-xy2ux9unc3] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

/* ═══════════════════════════════════════════════════════════════════
   ACTION BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

.action-buttons[b-xy2ux9unc3],
.action-buttons-edit[b-xy2ux9unc3] {
    display: flex;
    gap: 0.5rem;
}

.btn-edit[b-xy2ux9unc3],
.btn-send[b-xy2ux9unc3],
.btn-reset[b-xy2ux9unc3],
.btn-details[b-xy2ux9unc3],
.btn-save[b-xy2ux9unc3],
.btn-cancel[b-xy2ux9unc3] {
    padding: 0.6rem 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(66, 153, 225, 0.3);
}

    .btn-edit:hover[b-xy2ux9unc3] {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
    }

.btn-send[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

    .btn-send:hover:not(:disabled)[b-xy2ux9unc3] {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
    }

.btn-reset[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(237, 137, 54, 0.3);
}

    .btn-reset:hover[b-xy2ux9unc3] {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(237, 137, 54, 0.4);
    }

.btn-details[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(159, 122, 234, 0.3);
}

    .btn-details:hover[b-xy2ux9unc3] {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(159, 122, 234, 0.4);
    }

.btn-save[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

    .btn-save:hover[b-xy2ux9unc3] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
    }

.btn-cancel[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(245, 101, 101, 0.3);
}

    .btn-cancel:hover[b-xy2ux9unc3] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(245, 101, 101, 0.4);
    }

button:disabled[b-xy2ux9unc3] {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════════════════ */

.modal-overlay[b-xy2ux9unc3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content[b-xy2ux9unc3] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn-b-xy2ux9unc3 0.3s ease-out;
}

    .modal-content.modal-large[b-xy2ux9unc3] {
        max-width: 900px;
    }

@keyframes modalSlideIn-b-xy2ux9unc3 {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-xy2ux9unc3] {
    padding: 2rem;
    border-bottom: 2px solid #f7fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 20px 20px 0 0;
}

    .modal-header h3[b-xy2ux9unc3] {
        margin: 0;
        font-size: 1.75rem;
        color: #2d3748;
        font-weight: 700;
    }

.btn-close[b-xy2ux9unc3] {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #a0aec0;
    padding: 0.5rem;
    transition: all 0.2s ease;
    border-radius: 8px;
}

    .btn-close:hover[b-xy2ux9unc3] {
        color: #2d3748;
        background: rgba(0, 0, 0, 0.05);
    }

.modal-body[b-xy2ux9unc3] {
    padding: 2rem;
}

.form-group[b-xy2ux9unc3] {
    margin-bottom: 1.75rem;
}

    .form-group label[b-xy2ux9unc3] {
        display: block;
        margin-bottom: 0.75rem;
        font-weight: 600;
        color: #2d3748;
        font-size: 1rem;
    }

.form-control[b-xy2ux9unc3] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

    .form-control:focus[b-xy2ux9unc3] {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.form-group small[b-xy2ux9unc3] {
    display: block;
    margin-top: 0.5rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.alert[b-xy2ux9unc3] {
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-weight: 500;
}

.alert-danger[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    color: #742a2a;
    border: 2px solid #fc8181;
}

.modal-footer[b-xy2ux9unc3] {
    padding: 1.5rem 2rem;
    border-top: 2px solid #f7fafc;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: #f7fafc;
    border-radius: 0 0 20px 20px;
}

.btn-primary[b-xy2ux9unc3] {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .btn-primary:hover[b-xy2ux9unc3] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

.btn-secondary[b-xy2ux9unc3] {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(113, 128, 150, 0.3);
}

    .btn-secondary:hover[b-xy2ux9unc3] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(113, 128, 150, 0.4);
    }

/* ═══════════════════════════════════════════════════════════════════
   DETAILS MODAL SPECIFIC
   ═══════════════════════════════════════════════════════════════════ */

.details-grid[b-xy2ux9unc3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-section h4[b-xy2ux9unc3] {
    margin: 0 0 1.25rem 0;
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 700;
    border-bottom: 3px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.details-table[b-xy2ux9unc3] {
    width: 100%;
}

    .details-table tr[b-xy2ux9unc3] {
        border-bottom: 1px solid #f7fafc;
    }

    .details-table td[b-xy2ux9unc3] {
        padding: 1rem 0;
    }

        .details-table td:first-child[b-xy2ux9unc3] {
            font-weight: 600;
            color: #4a5568;
            width: 45%;
        }

    .details-table code[b-xy2ux9unc3] {
        background: #f7fafc;
        padding: 0.35rem 0.75rem;
        border-radius: 6px;
        font-family: 'Courier New', monospace;
        font-size: 0.9rem;
        color: #667eea;
        border: 1px solid #e2e8f0;
    }

.status-indicators[b-xy2ux9unc3] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge[b-xy2ux9unc3] {
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.badge-default[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    color: #2d3748;
}

.badge-custom[b-xy2ux9unc3] {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    color: #22543d;
}

/* ═══════════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════════════════════════════════ */

.toast[b-xy2ux9unc3] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 2000;
    min-width: 350px;
    animation: toastSlideIn-b-xy2ux9unc3 0.3s ease-out;
}

@keyframes toastSlideIn-b-xy2ux9unc3 {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.toast-success[b-xy2ux9unc3] {
    border-left: 5px solid #48bb78;
}

.toast.toast-error[b-xy2ux9unc3] {
    border-left: 5px solid #f56565;
}

.toast.toast-warning[b-xy2ux9unc3] {
    border-left: 5px solid #ed8936;
}

.toast span[b-xy2ux9unc3] {
    flex: 1;
    color: #2d3748;
    font-weight: 500;
}

.toast button[b-xy2ux9unc3] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #a0aec0;
    padding: 0;
    transition: all 0.2s ease;
}

    .toast button:hover[b-xy2ux9unc3] {
        color: #2d3748;
        transform: scale(1.1);
    }

/* ═══════════════════════════════════════════════════════════════════
   LOADING SPINNER
   ═══════════════════════════════════════════════════════════════════ */

.loading-spinner[b-xy2ux9unc3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem;
}

.spinner[b-xy2ux9unc3] {
    border: 5px solid #f7fafc;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin-b-xy2ux9unc3 1s linear infinite;
}

@keyframes spin-b-xy2ux9unc3 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner p[b-xy2ux9unc3] {
    margin-top: 1.5rem;
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   NO DATA MESSAGE
   ═══════════════════════════════════════════════════════════════════ */

.no-data[b-xy2ux9unc3] {
    padding: 4rem;
    text-align: center;
    color: #a0aec0;
}

    .no-data p[b-xy2ux9unc3] {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 500;
    }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .stats-cards[b-xy2ux9unc3] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .configuration-admin-container[b-xy2ux9unc3] {
        padding: 1rem;
    }

    .page-header[b-xy2ux9unc3] {
        padding: 2rem 1.5rem;
    }

        .page-header h2[b-xy2ux9unc3] {
            font-size: 1.75rem;
        }

    .stats-cards[b-xy2ux9unc3] {
        grid-template-columns: 1fr;
    }

    .filters-section[b-xy2ux9unc3] {
        flex-direction: column;
        padding: 1.5rem;
    }

    .filter-group[b-xy2ux9unc3] {
        width: 100%;
    }

    .devices-table-container[b-xy2ux9unc3] {
        overflow-x: auto;
    }

    .devices-table[b-xy2ux9unc3] {
        min-width: 1000px;
    }

    .modal-content[b-xy2ux9unc3] {
        width: 95%;
        max-height: 95vh;
    }

    .details-grid[b-xy2ux9unc3] {
        grid-template-columns: 1fr;
    }

    .toast[b-xy2ux9unc3] {
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   SMOOTH ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */

*[b-xy2ux9unc3] {
    transition: background 0.2s ease, border-color 0.2s ease;
}

button[b-xy2ux9unc3], input[b-xy2ux9unc3], select[b-xy2ux9unc3] {
    font-family: inherit;
}

/* ═══════════════════════════════════════════════════════════════════
   END OF STYLES
   ═══════════════════════════════════════════════════════════════════ */
/* /Components/Pages/DeviceDetail.razor.rz.scp.css */
/* /Components/Pages/Home.razor.rz.scp.css */
