/* Basic Setup */
body {
    background-color: #23272A; /* Dark background */
    color: #FFFFFF; /* White text */
    font-family: "Nunito", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* The main profile card */
.card {
    background-color: #2C2F33;
    border-radius: 8px;
    padding: 2rem;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Header with avatar and name */
header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
}

h1 {
    margin: 0;
}

h2 {
    margin: 0;
    font-weight: normal;
    font-family: "Quicksand", sans-serif;
    color: #99AAB5; /* Lighter grey for handle */
}

h3 {
    margin-bottom: 4px;
    font-family: "Quicksand", sans-serif;
    font-size: 25px;
}

h4 {
    margin-top: 2px;
    margin-bottom: 2px;
    font-weight: normal;
}

p.details span {
    display: inline-block;
    margin-right: 15px;
}

.logo {
    margin-left: 20px;
}

.details-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;

}

.details-wrapper .details {
    flex: 1;
}

/* Pronouns styling */
.bubble {
    background-color: #545361;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-weight: bold;
}

/* Links section */
.links a {
    display: block;
    color: #7289DA; /* Discord-like blue */
    text-decoration: none;
    margin-top: 0.5rem;
}

.links a:hover {
    text-decoration: underline;
}

.love {
    padding-top: 1px;
    color: #d87093;
    font-weight: bolder;
    display: flex;
    align-items: center;
}

.love::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 8px;
    background-image: url("heart.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: invert(66%) sepia(92%) saturate(995%) hue-rotate(295deg) brightness(87%) contrast(93%);
}

.okay {
    padding-top: 1px;
    display: flex;
    align-items: center;
}

.okay::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 8px;
    background-image: url("thumbs_up.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: invert(1);
}

.joke {
    padding-top: 1px;
    display: flex;
    align-items: center;
}

.joke::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 8px;
    background-image: url("laughing.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: invert(1);
}

.close {
    padding-top: 1px;
    display: flex;
    align-items: center;
}

.close::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1.2em;
    margin-right: 8px;
    background-image: url("friends.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: invert(1);
}

.flag {
    margin-left: 10px;
    padding: 4px;
    border-radius: 8px;
    width: 80px;
    height: 50px;
}

.flag1 {
    margin-left: 15px;
    padding: 4px;
    border-radius: 8px;
    width: 80px;
    height: 50px;
}