/* === Códigos Relativos ao Diretório Usuario/editar/painel === */
/* Estilos gerais para o formulário index(home) */

/* Reset de margens e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo e fundo */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Container principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cabeçalho com logo e menu */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #333;
    padding: 10px 20px;
}

.logo {
    width: 160px;
    height: 90px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav a {
    padding: 10px 20px;
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background-color: #666;
    border-radius: 20px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #999;
}




/* css perfil.php

/* Reset de margens e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo e fundo */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Container principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #333;
    padding: 10px 20px;
}

.logo {
    width: 160px;
    height: 90px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav a {
    padding: 10px 20px;
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background-color: #666;
    border-radius: 20px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #999;
}

/* Estilos do conteúdo do perfil */
.perfil-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
    gap: 50px;
}

/* Foto do perfil */
.foto img {
    width: 200px;  /* Ajuste o tamanho conforme necessário */
    height: 200px; /* Ajuste o tamanho conforme necessário */
    border-radius: 10%;
    object-fit: cover;
}

/* Foto do destinatário */
.foto-destinatario img {
    width: 150px;          /* Largura da foto */
    height: 150px;         /* Altura da foto */
    object-fit: cover;     /* Ajusta a imagem sem distorcer */
    border-radius: 50%;    /* Torna a imagem redonda */
}

/* Estilos do perfil (dados do perfil) */
.detalhes {
    flex: 1;
    margin-left: 30px;
    max-width: 600px; 
}

.detalhes p {
    font-size: 16px;
    line-height: 1.6;
}

.detalhes b {
    font-weight: bold;
}

/* Cria uma área reservada para mensagens ou outras funcionalidades */
.area-mensagens {
    height: 200px; 
    margin-top: 20px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
}

/* Botão Voltar */
.button-container {
    margin-top: 20px;
    text-align: center;
}

.btn-edit-photo {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-edit-photo:hover {
    background-color: #45a049;
}

/* Rodapé */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

footer p {
    font-size: 14px;
}
