.social-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
}

/* Social & Navigation Containers */
.navigation-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

/* When menu is closed, put emojis and counts next to each other */
.social-container.collapsed .social-item .emoji,
.social-container.collapsed .social-item .count {
    display: inline;
}

/* When menu is open, put emojis and counts on separate lines */
.social-container.expanded .social-item .emoji,
.social-container.expanded .social-item .count {
    display: block;
}

/* Social Card */
.social-card {
    display: flex;  /* Make it a flex container */
    align-self: center;
    margin: 0 auto;
    background-color: #24262E;
    align-items: center;  /* Center content vertically */
    justify-content: flex-start;  /* Align content to the right */
    width: calc(100% - 20px);
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add a shadow */
}

.social-card.shrinked {
    margin-left: 0px;
    width: 60px; /* or whatever the shrunk width should be */
}




.name-label {
    font-size: 20px;  /* Adjust as per design */
    color: #FF4D4D;  /* Color as per design */
    margin-bottom: 5px;  /* Some spacing */
}
.tier-label {
    font-size: 15px;  /* Adjust as per design */
    color: rgba(255, 255, 255, 0.7);  /* Slightly faded white */
    margin-bottom: 20px;  /* Space before the icons */
}
.profile-sc {
    width: 80px;  /* Adjust to fit the design */
    height: 80px;
    background-color: #FF4D4D;  /* Placeholder background */
    background-image: url('path-to-your-image.jpg');  /* Replace with your image */
    background-size: cover;  /* Cover the circle */
    border-radius: 50%;
    flex-shrink: 0; /* Prevent it from shrinking */
    margin-bottom: 10px;  /* Space below the profile picture */
}

.social-card {
    display: flex;
    align-items: center; /* Vertically center the items */
    /* ... (the rest of your styles) ... */
}


.name-card {
    display: flex;
    flex-direction: column;
    align-items: left; /* Center the circle and h2 */
}

#handleDisplay {
    font-size: 23px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.profileContainer {
    position: relative; /* Positioning context for innerCircle */
    width: 100px; /* Same as profileImage for alignment */
    height: 100px; /* Same as profileImage for alignment */
    margin-left: 20px;
    margin-top: 20px;
}

.profileImage {
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    background-color: #FF4D4D;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.profileImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 3
}

#avatarDisplay {
    display: none;
}

.innerCircle {
    width: 40px;
    height: 40px;
    background-color: #FFF;
    border-radius: 50%;
    position: absolute;
    top: 50%; /* Center the circle vertically */
    left: 50%; /* Center the circle horizontally */
    transform: translate(-50%, -50%); /* Adjust for exact centering */
    z-index: 2;
}



.access-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; /* or any specific height you have in mind */
    margin-top: 20px;
}

/* General styling for the emoji-count */
.emoji-count {
    display: flex;
    align-items: center; 
    gap: 5px;
}

.emoji {
    font-size: 20px; 
    margin-left: 5px;
    color: #1E1E1E;
    line-height: 1; /* Ensure consistent line height */
    vertical-align: middle; /* Align the middle of the emoji with the middle of the line */
}

.count {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1; /* Ensure consistent line height */
    vertical-align: middle; /* Align the middle of the text with the middle of the line */
}


/* Styling for each social item */
.social-item {
    background-color: #2c2c2c;  /* A slightly darker shade for contrast */
    padding: 7px 10px; 
    border-radius: 20px; 
    display: flex;
    justify-content: center;  /* Center the items for a balanced look */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for the social items to make them interactive */
.social-item:hover {
    background-color: #464646;  /* A slightly lighter shade on hover */
}

/* Styling for the overall social container */
.social-container {
    display: flex;
    flex-direction: row;
    gap: 15px;

    margin-left: 10px;
    border-radius: 25px;  /* Rounded corners for the container */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15); /* A subtle shadow for depth */
}