/* ==========================================
   ESTILOS PARA A PÁGINA DOS PARTICIPANTES.html
   ========================================== */

/* Plano de fundo principal da vista */
.main-dark-bg {
    background-color: #3f3f46;
    padding: 60px 20px;
}

.participantes-section {
    min-height: 60vh;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.participantes-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
}

.participantes-container {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Cabeçalho da guia */
.tabs-header {
    display: flex;
    background: #f1f5f9;
}

.tab-btn {
    flex: 1;
    padding: 22px 15px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn.active {
    background: #000000;
    color: #ffffff;
}

.tab-btn:first-child.active {
    border-top-left-radius: 12px;
}

.tab-btn:last-child.active {
    border-top-right-radius: 12px;
}

/* Buscador */
.search-container {
    padding: 20px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.search-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #334155;
    font-family: inherit;
    box-sizing: border-box;
    background-color: #ffffff;
}

.search-input:focus {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.2);
}

/* Tabelas */
.empresas-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.empresas-table th {
    background: #f8fafc;
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
}

.empresas-table td {
    padding: 18px 20px;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.empresas-table tr:last-child td {
    border-bottom: none;
}

.empresas-table td:first-child {
    font-weight: 500;
    color: #1e293b;
}

.empresas-table td a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.empresas-table td a:hover {
    text-decoration: underline;
    color: #2563eb;
}

/* Configurações móveis para tabelas e guias */
@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }

    .tab-btn:first-child.active {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
}