/* MagenSec Hub Portal Custom Styles */

/* Status Indicators */
.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-critical { background-color: #ef4444; }
.status-high { background-color: #f97316; }
.status-medium { background-color: #eab308; }
.status-low { background-color: #22c55e; }
.status-online { background-color: #10b981; }
.status-offline { background-color: #6b7280; }

/* Data Tables */
.data-table {
    overflow-x: auto;
}

.data-table table {
    min-width: 100%;
}

.data-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 12px;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.data-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.data-table tr:hover {
    background-color: #f8fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
    
    .data-table {
        font-size: 0.875rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Utility Classes */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
