﻿body {
    background: #f4f5f8;
    font-family: sans-serif;
}

.perfil-container {
    padding: 20px;
    padding-bottom: 100px;
}

/* HEADER */

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-header h2 {
    margin-top: 18px;
    margin-bottom: 6px;
}

.profile-role {
    color: #2563eb;
    font-weight: 600;
}

.profile-email {
    color: #6b7280;
    margin-top: 5px;
}

/* STATS */

.stats-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    background: white;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .stat-card h3 {
        margin: 0;
        font-size: 22px;
    }

    .stat-card p {
        margin-top: 8px;
        color: #6b7280;
        font-size: 13px;
    }

/* OPCIONES */

.options-section {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.option-card {
    background: white;
    border-radius: 18px;
    padding: 18px;
    text-decoration: none;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.2s;
}

    .option-card:hover {
        transform: translateY(-2px);
    }

    .option-card.logout {
        background: #fee2e2;
        color: #991b1b;
    }
