body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    padding: 20px;
    margin-top: 60px; /* Ensure content is below top bar */
}

.left-section, .right-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px 0;
}

.profile-image-container {
    text-align: center;
}

.profile-image-container img {
    max-width: 150px;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.profile-image-container-pv {
    width: 150px; /* Set a fixed width */
    height: 150px; /* Set a fixed height */
    overflow: hidden; /* Hide any overflow */
    border-radius: 50%; /* Make the container round */
    margin: 0 auto; /* Center the container horizontally */
    background-color: #fff; /* White background */
    border: 1px solid #ddd; /* Add border */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Add a small shadow */
}

.profile-image-container-pv img {
    width: 100%; /* Make the image fill the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Make the image round */
}

h1 {
    font-size: 1.5rem;
    text-align: center;
}

.btn-group-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-group-vertical button {
    margin: 10px 0;
    width: 100%;
    border-radius: 0; /* Remove default border radius */
    border: 1px solid #ddd; /* Add border to separate buttons */
}

.btn-group-vertical button:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.btn-group-vertical button:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.form-container {
    width: 100%;
}

.form-container input,
.form-container textarea {
    display: block;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.form-container label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}

.form-container input:focus + label,
.form-container textarea:focus + label,
.form-container input:not(:placeholder-shown) + label,
.form-container textarea:not(:placeholder-shown) + label {
    color: #0d6dfe;
}

.form-container button {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #0d6dfe;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.form-container .btn-secondary {
    background-color: #ccc;
    color: #333;
}

.form-container .btn-group {
    text-align: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-container .btn-group button {
    margin-bottom: 10px;
    width: calc(50% - 5px);
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        margin-top: 20px; /* Adjust top margin for mobile */
    }

    .left-section, .right-section {
        max-width: 100%;
        margin: 10px 0;
    }
}
