body {
    background: linear-gradient(180deg, #aaddff 0%, #ffffff 100%) no-repeat;
    background-attachment: fixed;
    font-family: 'Verdana', sans-serif; /* Fonte clássica da época */
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 900px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #7eb4ea;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
}

/* Navbar Glossy */
nav {
    background: linear-gradient(to bottom, #7eb4ea 0%, #5d9ad4 50%, #4a8bc7 100%);
    padding: 10px;
    border-radius: 8px 8px 0 0;
    border-bottom: 2px solid #fff;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    text-shadow: 1px 1px 2px #224466;
}

/* Inputs e Botões */
input[type="text"], input[type="password"], textarea {
    width: 95%;
    padding: 8px;
    border: 1px solid #88cafc;
    border-radius: 5px;
    background: #f0f8ff;
}

button {
    background: linear-gradient(to bottom, #b4e391 0%, #61c419 100%);
    border: 1px solid #4da810;
    color: white;
    padding: 8px 15px;
    border-radius: 20px; /* Borda redonda estilo Web 2.0 */
    cursor: pointer;
    font-weight: bold;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

button:hover {
    background: linear-gradient(to bottom, #b4e391 0%, #50a315 100%);
}

.post {
    background: #eef7ff;
    border: 1px solid #cce5ff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* Layout do Perfil */
.profile-container {
    display: flex;
    gap: 20px;
}

.profile-sidebar {
    width: 250px;
    background: #e8f4ff;
    padding: 15px;
    border: 1px solid #b6d9f7;
    border-radius: 8px;
    text-align: center;
}

.profile-main {
    flex: 1; /* Ocupa o resto do espaço */
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

.stat-box {
    text-align: left;
    font-size: 11px;
    margin-top: 15px;
}

/* Estilo para inputs de arquivo */
input[type="file"] {
    font-size: 11px;
    margin-top: 5px;
}

/* Imagens nos Posts */
.post-image {
    max-width: 100%;
    max-height: 400px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

/* Área de Comentários */
.comments-section {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #bcd;
    font-size: 11px;
}

.comment {
    background: #fff;
    padding: 5px 8px;
    margin-bottom: 5px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.comment-form {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.comment-form input {
    flex: 1;
    font-size: 11px;
}