.container-support {
    max-width: 1000px;
    margin: 0 auto 20px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 40px;
}

/* STATUS SECTION */
.status-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.status-card {
    border: 1px solid var(--md-sys-color-secondary);
    border-radius: 32px;
    padding: 20px;
}

.status-card h3 {
    font-size: 12px;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.status-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--md-sys-color-on-surface);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


.activities-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 30px;
    padding-top: 40px;
    border-top: 1px solid var(--md-sys-color-on-surface);;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

thead {
    background-color: var(--md-sys-color-surface);
}

th, td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

th {
    font-size: 12px;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    font-size: 14px;
    color: var(--md-sys-color-on-surface);
}

tr:last-child td {
    border-bottom: none;
}

.time {
    color: var(--md-sys-color-on-surface);
    font-size: 13px;
}

/* BADGES */
.activity-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
}

.badge-update {
    background-color: #e8f4f8;
    color: #06c;
}

.badge-resolved {
    background-color: #d7fde3;
    color: var(--md-sys-color-secondary);
}

.badge-maintenance {
    background-color: #fff3cd;
    color: #856404;
}

.badge-incident {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-unknow {
    background-color: #dfdfdf;
    color: #575757;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .status-section {
        grid-template-columns: 1fr;
    }

    .activities-section h2 {
        font-size: 24px;
    }

    table {
        font-size: 12px;
    }

    th, td {
        padding: 12px;
    }
}
