body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #25487B, #1a3363);
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: bold;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a3363, #0f2548);
}

.btn-success {
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: bold;
}

.foto-perfil {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #25487B;
}

.badge-tipo {
    background: #25487B;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.badge-status-aprovado {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.badge-status-pendente {
    background: #ffc107;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.badge-status-reprovado {
    background: #dc3545;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: white;
}