.profile-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.avatar-upload-area {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid #FF8C1A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avatar-upload-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.avatar-upload-area:hover .avatar-upload-overlay {
    opacity: 1;
}

.avatar-upload-overlay svg {
    margin-bottom: 0.5rem;
}

.profile-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.profile-email {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.profile-data-display p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.75rem;
}

.profile-data-display span {
    font-weight: 600;
    color: #222;
}

.edit-button {
    background-color: #FF8C1A;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.edit-button:hover {
    background-color: #E55C00;
}

.profile-edit-form {
    text-align: left;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.profile-edit-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.profile-edit-form input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.profile-edit-form button[type="submit"] {
    background-color: #28a745;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.profile-edit-form button[type="submit"]:hover {
    background-color: #218838;
}

.profile-edit-form button[type="button"] {
    background-color: #6c757d;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.profile-edit-form button[type="button"]:hover {
    background-color: #5a6268;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-container {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .profile-name {
        font-size: 2.2rem;
    }

    .profile-email {
        font-size: 1rem;
    }
}
