body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.profile-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.left-column {
    flex: 2;
}

.right-column {
    flex: 1;
    text-align: center;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.right-column ul {
    list-style: none;
    padding: 0;
}

.right-column li {
    margin: 10px 0;
}

.photo-placeholder {
    width: 100%;
    height: 200px;
    background-color: #ccc;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-style: italic;
}

h1 {
    text-align: left;
    font-size: 28px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    border-bottom: 1px solid #0066cc;
    padding-bottom: 5px;
    margin-top: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
}

li strong {
    color: #0066cc;
}

.btn-edit {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 15px;
    background-color: #ffc107;
    color: #333;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.btn-edit:hover {
    background-color: #e0a800;
    cursor: pointer;
}

.messages {
    list-style: none;
    padding: 10px;
}

.messages li {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.messages .success {
    background-color: #2ecc71;
    color: white;
}

.messages .error {
    background-color: #e74c3c;
    color: white;
}