	/* Personal page */
/* Ensure the entire background is the pink you use */
body {
    background-color: rgba(232, 209, 254, 1); /* Your pink background */
}

/* Ensure the page wrapper also has the same background */
#page-wrapper {
    background-color: rgba(232, 209, 254, 1); /* Same pink background */
}

/* Profile Page - Modern Styling */
.profile-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15); /* Glassmorphism effect */
    backdrop-filter: blur(10px);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Profile Image */
.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c49beb;
    margin-bottom: 1.5rem;
}

/* Profile Title */
.profile-container h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
}

/* Profile Subtitle */
.profile-container p strong {
    font-size: 1.1rem;
    color: #c49beb;
}

/* Profile Text */
.profile-container p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Bio Section Styling */
.bio p {
    margin-bottom: 1rem;
}

/* Back Button */
.back-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #c49beb, #9b59b6);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background: linear-gradient(135deg, #9b59b6, #c49beb);
    transform: scale(1.05);
}