/* ==================== ESTILOS DOS CARDS DE SESSÃO ==================== */

/* Session Card Header Gradient */
.session-card .card-header.success-gradient {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.session-card .card-header.warning-gradient {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
}

.session-card .card-header.secondary-gradient {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

/* Session Card Body */
.session-card .card-body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Session Status Icon */
.session-status-icon {
    width: 14px;
    height: 14px;
    font-size: 8px;
}

/* Session Action Buttons */
.session-btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}

.session-btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}

.session-btn-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}

.session-btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}

/* Session Avatar */
.session-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.session-avatar i {
    font-size: 1.5rem;
    color: white;
}

/* Session Stats */
.session-stats {
    border-right: 1px solid #dee2e6;
}

.session-stats:last-child {
    border-right: none;
}

.session-stats-icon {
    font-size: 1rem;
    margin-right: 0.25rem;
}

/* Session Badge */
.session-badge {
    border-radius: 20px;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
}
