.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
    background: #1F2433;
    border-radius: 50px;
}

.topbar h2 {
    color: #fff;
    font-weight: 200;
    font-size: 26px;
    margin: 0;
}

.topbar button.menuIcon {
    border: none;
    background: #161b21;
    color: #fff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.icon-btn {
    padding: 8px;
    background: var(--card);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.noti-log {
    position: relative;
}

.noti-log ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.noti-log ul li {
    list-style: none;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    padding-left: 15px;
    margin-left: 15px;
    font-size: 14px;
    line-height: 24px;
}

.noti-log ul li:first-child {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
}

.noti-log ul li img {
    vertical-align: text-top;
    width: 20px;
}

.noti-log ul li b {
    color: #fff;
    position: absolute;
    bottom: -5px;
    right: -8px;
    font-size: 14px;
    font-weight: normal;
}

.noti-log ul li span {
    vertical-align: middle;
}

/* Mobile Header */
.notimobile {
    position: relative;
}

.notimobile img {
    width: 22px;
}

.notimobile b {
    position: absolute;
    bottom: 0;
    right: -10px;
    color: #242424;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
}
.page-heading {
    font-size: 25px;
}

.heading-search {
    margin: 0px 0px 10px;
    padding: 10px 20px;
    color: #fff;
}

.searchfield {
    position: relative;
}

.searchfield span {
    position: absolute;
    top: 6px;
    right: 10px;
    width: 25px;
    height: 25px;
    color: #6F6F71;
}

.searchfield input[type="text"] {
    background: #161b21;
    border: 1px solid #5D6476;
    border-radius: 12px;
    height: 40px;
    color: #fff;
    padding: 10px 15px;
}

input:focus {
    outline: none;
}

.selectmodel select {
    height: 40px;
    font-size: 14px;
    border: 1px solid #5D6476;
    background: #161b21;
    color: #fff;
    border-radius: 12px;
    padding: 10px;
}

.mobile-search-box {
   position: absolute;
    width: 95%;
    top: 64px;
    z-index: 3;
    left: 0;
    padding: 5px 30px;
    background: #1F2433;
    border-radius: 50px;
    right: 0;
    margin: auto; 
    display: none; 
}

@media (max-width: 640px) {

    .topbar h2 {
        font-size: 24px;
    }
}