/* Classes de Cores */
.badge-roxo { background-color: #6610f2 !important; color: white; }
.badge-azul { background-color: #0d6efd !important; color: white; }
.badge-verde { background-color: #198754 !important; color: white; }

tr.status-roxo td { background-color: #f3ebff !important; }
tr.status-azul td { background-color: #e7f1ff !important; }

/* Estilo da Seta */
.btn-details {
    background: none;
    border: none;
    color: #adb5bd;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    margin-top: 3px;
}

.main-row:hover .btn-details { color: #6c757d; }
.btn-details.active { color: #495057; transform: rotate(90deg); }

/* Área de Detalhes */
.detail-row {
    background-color: #fcfcfc !important;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.02);
}

.detail-content {
    padding: 15px !important;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

/* Grid de detalhes para mobile */
.mobile-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.mobile-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: bold;
    display: block;
}

.mobile-value {
    font-size: 0.95rem;
    font-weight: 600;
}