.user-sidebar {
    background-color: #fff;
    width: 272px;
    padding: 32px;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* flex-grow: 1; */
    align-items: flex-end;
    -webkit-box-align: end;
    border: 1px solid var(--border-normal-50, #eceff3);
    max-height: calc(100vh - 100px);
}

.user-sidebar-logo {
    width: 97px;
}

.user-sidebar-topContainer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 250px;
}

.user-sidebar-bottomContainer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    width: 100%;
    max-width: 250px;
}

.user-sidebar-link {
    border-radius: 70px;
    background: var(--background-white, #fff);
    color: var(--text-normal-500, #666d80);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 8px 12px 8px 10px;
    transition: 300ms;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.user-sidebar-link:hover {
    color: #0d0d12;
    box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
}

.user-sidebar-link.active {
    background: var(--neutral-25, #f8fafb);
    box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
    color: #0d0d12;
}

.user-sidebar-userContainer {
    display: flex;
    gap: 12px;
}

.user-sidebar-userProfileImage {
    width: 36px;
    height: 36px;
    border-radius: 36px;
}

.user-sidebar-userNameWrapper {
    display: flex;
    flex-direction: column;
}

.user-sidebar-userNameWrapper span:first-of-type {
    color: var(--neutral-800, #1a1b25);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px; /* 171.429% */
}

.user-sidebar-userNameWrapper span:last-of-type {
    color: var(--text-normal-500, #666d80);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
}

.user-sidebar-horizontalLine {
    height: 1px;
    width: 100%;
    background-color: var(--border-normal-50, #eceff3);
}

.summary-mainContainer {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 100px;
}

.user-infoCard {
    border-radius: 12px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
}

.summary-mainContent {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 32px;
    margin-right: 24px;
    max-width: 880px;
}

.user-profileNameWrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    color: var(--text-normal-500, #666d80);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; /* 150% */
    border-radius: 96px;
    background: var(--background-hover-50, #eceff3);
    justify-content: center;
}

.user-editBtn {
    padding: 8px 15px 8px 10px;
    background: var(--background-white, #fff);
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--text-loud-900, #0d0d12);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    border-radius: 62px;
    box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
    position: relative;
    text-align: center;
    justify-content: center;
}

.user-editBtn::after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    border: 1px solid transparent;
    border-radius: 62px;
    transition: 300ms;
}

.user-editBtn:hover::after {
    border: 1px solid #aeadf8;
}

.user-infoCard-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
    border-radius: 48px;
    min-width: 48px;
}

.user-infoCard-emptyText {
    color: var(--text-muted-600, #36394a);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    margin: 0;
}

.user-infoCard-emptyWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-infoCard-moreBtn {
    text-align: center;
    height: fit-content;
    border-radius: 62px;
    box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
    color: var(--text-loud-900, #0d0d12);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    padding: 4px 12px;
    position: relative;
}

.user-infoCard-moreBtn::after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    border: 1px solid transparent;
    border-radius: 62px;
    transition: 300ms;
}

.user-infoCard-moreBtn:hover::after {
    border: 1px solid #aeadf8;
}

.user-infoCard-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}

.summary-mainContainer--inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 1;
    /*flex-grow: 1; */
    margin-top: 48px;
    margin-bottom: 208px;
}

.user-rightBar-menu {
    width: 258px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-mainContent-contentWrapper {
    display: flex;
    width: 1194px;
}

.user-welcome-message {
    margin-left: 32px;
}

.user-infoCard-icon svg {
    width: 20px;
    height: 20px;
}

.user-sidebar-link svg {
    width: 14px;
    height: 14px;
}

.user-infoCard-icon svg *,
.user-sidebar-link svg * {
    fill: currentColor;
}

.user-forYouContainer {
    display: flex;
    flex-direction: column;
    width: 258px;
}

.summary-rightBar {
}

.summary-rightBar-stickyContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.user-forYou-title {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
    margin-bottom: 25px;
}

.user-forYou-progressText {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    margin-bottom: 12px;
}

.user-forYou-text {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    margin-top: 25px;
    margin-bottom: 25px;
}

.user-profileProgress {
    height: 12px;
    border-radius: 24px;
    width: 100%;
    position: relative;
    background: var(--background-normal-25, #f6f8fa);
    overflow: hidden;
}

.user-profileProgress--inner {
    height: 100%;
    width: 0%;
    transition: 2000ms;
    border-radius: 24px;
    background: var(--primary-400-base, #00b7fd);
}

.user-infoCard-brandImageWrapper {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 56px;
    box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
    justify-content: center;
    align-items: center;
    display: flex;
}

.user-infoCard-brandImageWrapper img {
    width: 100%;
}

.user-infoCard-brandWrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.user-infoCard-bottom {
    gap: 24px;
    display: flex;
    flex-direction: column;
    max-height: 223px;
    overflow: auto;
    padding: 2px;
}

.user-infoCard-brandNameWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.user-infoCard-brandNameWrapper span:nth-child(1) {
    color: var(--text-loud-900, #0d0d12);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

.user-infoCard-brandNameWrapper span {
    color: var(--text-normal-500, #666d80);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
}

.communication-settings-mainWrapper {
    padding-left: 32px;
}

.communication-settings-btn-submit {
    width: fit-content;
    margin-left: auto;
    margin-top: 36px;
    padding: 8px 41px;
}

.communication-settings-formWrapper {
    display: flex;
}

.user-dashboard-title {
    margin-left: 32px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px; /* 140% */
    margin-bottom: 0;
}

.communication-settings-profilePictureWrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.communication-settings-m-left {
    width: 352px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.communication-settings-m-right {
    display: flex;
    flex-direction: column;
    margin-left: 24px;
    justify-content: space-between;
    flex-grow: 1;
}

.communication-settings-uploadCv-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
}

.user-infoCard-cvDropzone {
    height: 188px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px dashed var(--border-hover-100, #dfe1e7);
    padding: 18px;
    cursor: pointer;
}

.user-infoCard-cvDropzone p:first-of-type {
    color: var(--text-normal-500, #666d80);
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    margin-top: 8px;
    margin-bottom: 0;
}

.user-infoCard-cvDropzone p:last-of-type {
    color: var(--text-muted-600, #36394a);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    margin-top: 20px;
}

.communication-settings-uploadCv-container > span:first-of-type {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
}

.user-infoCard-uploadedCv {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    background: var(--background-white, #fff);
    box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
    gap: 6px;
}

.user-infoCard-uploadedCv a {
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-infoCard-uploadedCv a span {
    white-space: nowrap;
}

.user-infoCard-uploadedCv .user-editBtn {
    padding: 8px;
    width: 36px;
    height: 36px;
    min-width: 36px;
}

.communication-settings-profilePictureWrapper .user-editBtn {
    padding: 8px 15px;
}

.careerChoices-container .checkboxGroup {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.careerChoices-container .careerChoices-title {
    color: var(--text-loud-900, #0d0d12);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
}

.careerChoices-container .radiobuttonGroup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 67%;
    row-gap: 10px;
}

.summary-mainContainer .data-repeater {
    width: 100%;
}

.user-settings-mainWrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 32px;
}

.user-settings-mainWrapper .user-infoCard {
    width: 446px;
}

.user-accessibility-mainWrapper .user-infoCard {
    width: 728px;
}

.user-accessibility-mainWrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.university-career-mainContent {
    max-width: 728px;
}

@media only screen and (max-width: 1430px) {
    .user-mainContent-contentWrapper {
        width: 925px;
    }
}

@media only screen and (max-width: 1199px) {
    .user-sidebar {
        display: none;
    }

    .summary-mainContainer--inner {
        margin-bottom: 39px;
    }

    .user-mainContent-contentWrapper {
        width: auto;
    }
}

@media only screen and (max-width: 991px) {
    .careerChoices-container .checkboxGroup {
        max-height: 450px;
    }

    .user-infoCard-brandImageWrapper {
        width: 29px;
        height: 29px;
        min-width: 29px;
    }

    .user-mainContent-contentWrapper.gap-md {
        gap: 20px;
    }

    .careerChoices-container .radiobuttonGroup {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .careerChoices-container .radiobuttonGroup label {
        margin-top: 0 !important;
    }

    .careerChoices-container .checkboxGroup {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .careerChoices-container .checkboxGroup label {
        margin-top: 0 !important;
    }

    .user-mainContent-contentWrapper {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 0px;
        padding: 20px;
        width: 100%;
        padding: 0;
    }

    .summary-mainContent {
        margin: 0;
    }

    .user-rightBar-menu {
        width: auto;
    }

    .user-forYouContainer {
        width: auto;
    }

    .communication-settings-formWrapper {
        flex-direction: column;
    }

    .communication-settings-m-right {
        margin-left: 0;
        margin-top: 24px;
    }

    .communication-settings-btn-submit {
        width: 100%;
        max-width: calc(100% - 40px);
        margin-right: auto;
    }

    .summary-mainContainer--inner {
        width: 100%;
        max-width: 640px;
        gap: 20px;
    }

    .communication-settings-m-left {
        width: 100%;
    }

    .communication-settings-mainWrapper {
        padding-left: 0;
        max-width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }

    .user-accessibility-mainWrapper {
        width: 100%;
        margin: 0;
    }

    .user-accessibility-mainWrapper .user-infoCard {
        width: 100%;
    }

    .user-settings-mainWrapper .user-infoCard {
        width: 100%;
    }

    .user-settings-mainWrapper {
        align-items: center;
        margin: 0;
    }

    .user-dashboard-title {
        margin-left: 20px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .careerChoices-container .checkboxGroup {
        max-height: unset;
    }
}

.hobby-repeater .hobby-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hobby-repeater .hobby-item .hobby {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 62px;
    box-shadow: 0px 0px 0px 1px #09194821, 0px 1px 2px 0px #12376914;
}

.hobby-repeater .hobby-item .hobby + .hobby {
    margin-top: 12px;
}

.hobby-repeater .hobby-item .hobby span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #0d0d12;
}

.hobby-repeater .hobby-item.disabled .hobby span {
    color: #818898;
}

.hobby-repeater .hobby-item button {
    display: flex;
    width: fit-content;
    color: #fff;
    box-shadow: none;
    background-color: #e03061;
}

.hobby-repeater .hobby-item button:hover {
    background-color: #e04c76;
}

.hobby-repeater .hobby-item button::after {
    content: none;
}

.about-container textarea {

    border-radius: 12px;
    resize: none;
}

.about-container .textarea-with-counter p {
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #666d80;
    margin-top: 6px;
}

/* Language Switch Styling */
.language-switch-wrapper {
    position: absolute;
    top: 10px;
    right: 10px; /* Changed from left: 10px to right: 10px */
    z-index: 10;
}

.switch-container {
    background: #f0f0f0;
    border-radius: 20px;
    padding: 2px;
    display: inline-block;
    position: relative;
}

.switch-label {
    display: flex;
    align-items: center;
    width: 84px;
    height: 32px;
    background: #e0e0e0;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switch-button {
    position: absolute;
    left: 2px;
    width: 40px;
    height: 28px;
    background: #fff;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang {
    width: 40px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    color: #666;
    transition: color 0.3s ease;
}

.lang.tr {
    color: #00B7FD;
}

.language-toggle {
    display: none;
}

.language-toggle:checked + .switch-label .switch-button {
    left: calc(100% - 42px);
}

.language-toggle:checked + .switch-label .lang.tr {
    color: #666;
}

.language-toggle:checked + .switch-label .lang.en {
    color: #0d0d12;
}

/* Content Visibility */
.content-tr, .content-en {
    transition: opacity 0.3s ease;
}

.bard-icon {
    background-color: #ffffff;
    color: #4007d8;
    padding: 3px;
    width: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-align: center;
    display: none;
}

.bard-icon:hover {
    cursor: pointer;
    background-color: #0056b3;
    color: #f8f9fa;
    transition: background-color 0.3s, color 0.3s;
}

.fancy-span {
    display: none;
    font-size: 10px;
    font-weight: bold;
    color: #4A90E2;
    background: linear-gradient(to right, #e0f7fa, #fce4ec);
    padding: 3px 6px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.ri-bard-fill.bard-icon {
    cursor: pointer;
    position: relative;
}

.ri-bard-fill.bard-icon.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    padding: 0;
    margin: 0;
    cursor: not-allowed;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-switch-wrapper .fancy-span,
.language-switch-wrapper .bard-icon {
    vertical-align: middle;

}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #d8b4fe;
    border-radius: 50%;
    pointer-events: none;
    animation: particle-move 1s ease-out forwards;
    box-shadow: 0 0 8px 2px rgba(216, 180, 254, 0.8);
}

@keyframes particle-move {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: scale(0.5) translate(var(--move-x), var(--move-y));
        opacity: 0;
    }
}

.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    pointer-events: none;
    border-radius: 50%;
    animation: sparkleAnimation 0.8s linear forwards;
}

@keyframes sparkleAnimation {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

#about-bard {
    position: relative;
}

.sparkle.color1 {
    background: #FFD700;
    box-shadow: 0 0 5px #FFD700;
}

.sparkle.color2 {
    background: #00FFFF;
    box-shadow: 0 0 5px #00FFFF;
}

.sparkle.color3 {
    background: #FF69B4;
    box-shadow: 0 0 5px #FF69B4;
}

.textInput-counter {
    margin-top: 3px;
    font-size: 14px;
    color: #6c757d;
    align-self: flex-end;
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    text-align: end;
}

.language-switch-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.switch-container {
    background: #f0f0f0;
    border-radius: 20px;
    padding: 2px;
    display: inline-block;
    position: relative;
}

.switch-label {
    display: flex;
    align-items: center;
    width: 84px;
    height: 32px;
    background: #e0e0e0;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switch-button {
    position: absolute;
    left: 2px;
    width: 40px;
    height: 28px;
    background: #fff;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang {
    width: 40px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    color: #666;
    transition: color 0.3s ease;
}

.lang.tr {
    color: #0d0d12;
}

.language-toggle {
    display: none;
}

.language-toggle:checked + .switch-label .switch-button {
    left: calc(100% - 42px);
}

.language-toggle:checked + .switch-label .lang.tr {
    color: #666;
}

.language-toggle:checked + .switch-label .lang.en {
    color: #0d0d12;
}

.content-tr, .content-en {
    transition: opacity 0.3s ease;
}