/* assets/css/meu-perfil.css */

.perfil-container {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 2em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.perfil-header h1 {
    font-size: 2em;
    margin-bottom: 0.25em;
    color: #333;
}

.perfil-header p {
    font-size: 1.2em;
    color: #555;
    font-weight: bold;
}

.perfil-posts-section h2 {
    font-size: 1.5em;
    margin-top: 1.5em;
    margin-bottom: 1em;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5em;
}

.logout-link {
    display: inline-block;
    background-color: #d9534f;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.logout-link:hover {
    background-color: #c9302c;
}

/* Opcional: Adicionar um estilo para o caso de não haver posts */
.no-posts {
    font-style: italic;
    color: #777;
    text-align: center;
    padding: 2em;
}