/* Container principal (padrão do ranking) */
.container-box {
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid #444;
    border-left: 5px solid #f0c843; /* borda dourada */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
    max-width: 900px;
    margin: 30px auto;
}

/* Alerta informativo */
.alert-info {
    background-color: rgba(20, 20, 20, 0.7);
    border-left: 5px solid #f0c843;
    padding: 15px 20px;
    border-radius: 8px;
    color: #ccc;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Tabela de suporte */
.support-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.support-table th,
.support-table td {
    padding: 12px 15px;
    color: #ccc;
    font-size: 15px;
}

.support-table th {
    background-color: #222;
    color: #f0c843;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-table tr:nth-child(even) {
    background-color: rgba(50, 50, 50, 0.3);
}

.support-table tr:hover {
    background-color: rgba(80, 80, 80, 0.5);
    transition: background-color 0.2s;
}

/* Status */
.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.status-indicator.online {
    background-color: #4CAF50; /* verde */
}

.status-indicator.offline {
    background-color: #F44336; /* vermelho */
}
