.profile-container {
    max-width: 400px;
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.profile-container h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.profile-field {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f8f9fa;
}

.edit-button {
    margin-left: 10px;
    padding: 8px 15px;
    background: #44bd9f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.edit-button:hover {
    background: #186b56;
}

.logout-button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background: #f1364c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.logout-button:hover {
    background: #c0392b;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: #4497bd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.avatar-letter {
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

strong {
    color: #2c3e50;
}

span {
    color: #34495e;
}
