.status-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.status-modal.active {
    display: flex;
}

.status-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    cursor: default;
    max-width: 90%;
    width: 95%;
    max-height: 80%;
    overflow: hidden;
    padding: 1rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.status-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.status-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.status-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.table-wrapper {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 999px;
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px;
    font-size: 1rem;
    color: var(--text-secondary);
}

th,
td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

th {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-weight: 700;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.red {
    background: #ff4757;
}

.yellow {
    background: #ffc107;
}

.green {
    background: #2ed573;
}

@media (max-width: 768px) {
    .status-content {
        width: 95%;
        max-height: 85vh;
        padding: 1rem;
    }

    th,
    td {
        padding: 0.6rem 0.8rem;
    }
}