/* Monitor VX AI Styles */
.metavx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.metavx-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.metavx-card {
    background-color: #1e2129;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.metavx-card-title {
    font-size: 1.25rem;
    color: #00a8ff;
    margin-bottom: 12px;
    font-weight: 600;
}

.metavx-card-description {
    font-size: 0.875rem;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 16px;
}

.metavx-info {
    color: #ffffff;
    font-style: italic;
}

.metavx-table-responsive {
    overflow-x: auto;
}

.metavx-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
}

.metavx-table th,
.metavx-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #2c3e50;
}

.metavx-table th {
    background-color: #2c3e50;
    font-weight: bold;
    cursor: pointer;
}

.metavx-table tr:hover {
    background-color: #2c3e50;
}

.metavx-table a {
    color: #00a8ff;
    text-decoration: none;
}

.metavx-table a:hover {
    text-decoration: underline;
}

/* Status colors */
.metavx-table .status-green {
    color: #2ecc71;
}

.metavx-table .status-orange {
    color: #f39c12;
}

.metavx-table .status-red {
    color: #e74c3c;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .metavx-table th,
    .metavx-table td {
        padding: 8px;
    }

    .metavx-title {
        font-size: 2rem;
    }

    .metavx-card-title {
        font-size: 1.1rem;
    }

    .metavx-card-description {
        font-size: 0.8rem;
    }
}
