/* Profile Styles */

.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    background: #f0f0f0;
}

.profile-info h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.profile-info p {
    margin: 5px 0;
    color: #666;
}

.profile-section {
    margin-bottom: 25px;
}

.profile-section h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.profile-field {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.profile-field label {
    font-weight: 500;
    color: #555;
}

.profile-field value {
    color: #333;
}

.profile-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
}

.profile-button:hover {
    background-color: #0056b3;
}

.profile-button.edit {
    background-color: #28a745;
}

.profile-button.edit:hover {
    background-color: #218838;
}

.profile-button.delete {
    background-color: #dc3545;
}

.profile-button.delete:hover {
    background-color: #c82333;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-container {
        padding: 10px;
    }

    .profile-button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}
