.profile-heading {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin: 5% 0;
    border-bottom: 3px solid rgba(0, 0, 0, 0.2);
    padding: 0 4vw 4vw 0;
}
.userInfoHead {
    display: flex;
    flex-direction: column;
    gap:5px;
}
.user-name {
    color:#000;
}
.user-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
}
.user-pic img {
    width:70px;
    height: 70px;
    object-fit: cover;
    border:1;
    border-radius: 10000px;
}
.user-menu {
    width: 98%;
    margin: 10% 1% 50vh 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.activity-wrap {
    padding: 2% 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.act-head {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.act-items {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.act-item {
    background: #fff;
    width: 45%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 3% 0;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.3);
}
.act-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 15px;
}
.edit-profile {
    width: 100%;
    padding: 2% 4%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 200px;
}
.my-clubs {
    width:98vw;
    display: flex;
    flex-direction: column;
    gap:20px;
    padding-right: 4vw;
    margin-bottom: 40vh;
}
.my-club-item {
    width:80vw;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    -moz-backdrop-filter:blur(5px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2% 4%;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.3);
}
.my-club-item:hover, .my-club-item:focus, .my-club-item:active {
    background-color: var(--secondary-color);
}
.my-club-info {
    display: flex;
    flex-direction: row;
    gap:5px;
    align-items: center;
}
.my-club-info img {
    width: 60px;
    height: auto;
}
.editProfile {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 15px;
    width: 40%;
    border: 0;
    padding: 2vw 0px;
    text-align: center;
}
.edit-profile .plex-input {
    width: 50%;
}
.editProfile:hover, .editProfile:active, .editProfile:focus {
    background-color: var(--secondary-color);
}
#userBirthday {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
#userBirthday select {
    border: 1px;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
}
#userBirthday input[type="text"] {
    width: 30%;
    border:0;
    border-radius: 10px;
    padding: 5px 10px;
    outline: 0;
}

#avatar {
    display: none; /* Hide native input */
}

.custom-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.7);
    color: white;
    cursor: pointer;
    border-radius: 10000px;
    font-size: 14px;
    transition: background 0.3s;
    border: 2px dotted;
    color: var(--secondary-color);
}

.custom-file-label:hover {
    background-color: #005a87;
    color:#fff;
}

.file-name-preview {
    margin-top: 10px;
    font-size: 13px;
    color: #444;
}