.head-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: rgba(1, 4, 59, 0.8); */
    /* border-radius: 28px; */
    /* padding-top: 10px;
    padding-bottom: 10px; */
    /* padding-left: 10px;
    padding-right: 10px; */
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    transition: all 0.3s ease-in-out;
}

.head-bar i {
    font-size: 1.5rem;
}

.search-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: auto;
}

.head-bar .link-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.head-bar .content-divider {
    width: 1px;
    height: 25px;
    background-color: #858585;
    display: inline-block;
}

.head-bar h3,
.head-bar h4 {
    color: #fff;
    font-weight: 600;
}

.head-bar a {
    position: relative;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    width: auto;
    margin: 0;
}

.head-bar a .link-text {
    color: #ffffff;
    position: relative;
    margin-left: 2px;
}

.head-bar a .link-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #E99757;
    transition: width 0.3s ease-in-out;
}

.head-bar a .link-text.active {
    color: #E99757;
}

.head-bar a .link-text:hover {
    color: #E99757;
    text-shadow: 0 3px 10px rgba(77, 77, 77, 0.2);
}

.head-bar a .link-text:hover::after {
    width: 100%;
}


.head-bar a i {
    font-size: 1.15rem;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
}

.head-bar a:hover i {
    color: #E99757;
    text-shadow: 0 3px 10px rgba(77, 77, 77, 0.2);
}

.head-bar .img-name-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-right: auto;
}

.head-bar .img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg,
            rgba(1, 4, 59, 0.55) 0%,
            rgba(1, 4, 59, 0.50) 50%,
            rgba(1, 4, 59, 0.35) 85%,
            rgba(1, 4, 59, 0.25) 100%);
    border-radius: 12px;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.head-bar .img-container:hover {
    background-color: #E99757;
}


.head-bar .img-container img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 5px;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 5px;
}

.search-bar-wrapper {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    width: 200px;
    height: fit-content;
    box-shadow: inset 0px 2px 4px rgb(120 120 120 / 35%);
    /* default state */
    transition: 0.3s ease-in-out;
}

.search-bar-wrapper:focus-within {
    box-shadow: inset 0px 1px 5px rgba(58, 58, 58, 0.699);
}

.search-bar-wrapper .search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 10px 8px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    background: transparent;
}

.left-content,
.right-content {
    z-index: 2;
    /* Keeps them above background but under search bar if needed */
}