body {
    font-family: sans-serif;
    margin: 0;
}
.container {
    padding: 20px;
}
.title {
    color: #dc2626;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}
.form-group{
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}
.form-group label.required::before{
    content: '*';
    color: hsl(0, 72%, 51%);
    margin-right: 4px;
}
.form-group input[type="text"], .form-group input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}
.profile-photo-section {
    text-align: center;
    margin-bottom: 30px;
}
.profile-photo-circle {
    width: 120px;
    height: 120px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    background-color: #eee;
}
.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* To make sure the image is circular, matching the div */
}
.profile-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-photo-circle .hidden {
    display: none;
}
.upload-text {
    color: #666;
    font-size: 14px;
}
.save-button {
    background-color: #dc2626;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    float: right;
    margin-top: 20px;
}
.save-button:hover {
    background-color: #cc0000;
}

/* --- Media Queries for Profile Settings form --- */
@media screen and (max-width: 768px) {
    /* Adjust profile form layout for smaller screens */
    .form-group {
        margin-bottom: 15px;
    }

    .title {
        font-size: 22px;
        margin-top: 50px; /* Push title down to avoid overlap with openbtn */
    }

    .save-button {
        width: 100%; /* Make save button full width */
        float: none; /* Remove float */
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    .title {
        font-size: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input[type="text"], .form-group input[type="tel"] {
        padding: 8px;
        font-size: 14px;
    }

    .profile-photo-circle {
        width: 100px;
        height: 100px;
    }

    .upload-text {
        font-size: 12px;
    }

    .save-button {
        padding: 10px 20px;
        font-size: 16px;
    }
}