/* Main body styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #EAE7F8;
    color: #333;
    padding: 20px;
    margin: 0; /* Align content center using justify-content on the parent flex container */
    display: flex;
    justify-content: center; /* Center the content horizontally */
}

.hidden-featured-image {
    display: none;
    visibility: hidden;
    width: 0;
    height: 0;
}

.container {
    width: 100%;
    max-width: 960px; /* Ensures content does not stretch too much on larger screens */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px auto; /* Vertical and horizontal centering */
    box-sizing: border-box; /* Includes padding in the width */
}

/* Banner Section */
.banner {
    width: 100%;
    height: 250px;
    background-color: #ddd;
    background-image: url('/themes/uv/images/banner.webp');
    background-size: cover;
    margin-top: 90px; 
    background-position: center;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.profile-pic {
    position: absolute;
    bottom: -45px;
    left: 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    background-size: cover;
    cursor: pointer;
    z-index: 2;
}

#social-media-icons-banner {
    position: absolute;
    right: 20px;
    bottom: 10px;
    z-index: 2;
}

/* Responsive design adjustments for smaller devices */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin-top: 15px;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
        bottom: -30px;
        left: 10px;
    }

    .banner {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
        margin-top: 10px;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
        bottom: -25px;
        left: 5px;
    }

    #social-media-icons-banner {
        right: 10px;
        bottom: 5px;
    }
}


