﻿
header.premium-header {
    background: linear-gradient(135deg,#ffffff,#fff8f8);
    border-bottom: 4px solid #c31818;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.premium-header .top-header {
    padding: 4px 4px;
}

.premium-header .brand-area {
    display: flex;
    align-items: center;
}

    .premium-header .brand-area img {
        width: 68px;
        height: 68px;
        object-fit: contain;
        transition: .35s;
    }

        .premium-header .brand-area img:hover {
            transform: scale(1.08);
        }

.logo_text {
    margin-left: 15px;
}

    .logo_text strong {
        display: block;
        color: #c31818;
        font-size: 24px;
        letter-spacing: 1px;
        font-weight: 700;
    }

.h1-logo {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2b2b2b;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#LoginUserRole {
    margin: 0;
    color: #c31818 !important;
    font-size: 17px;
    font-weight: 600;
}

.avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid #c31818;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(195,24,24,.25);
    transition: .35s;
}

    .avatar:hover {
        transform: translateY(-3px);
    }

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dropdown-menu {
    border: none;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.dropdown-item {
    border-radius: 10px;
    padding: 12px 15px;
    transition: .3s;
}

    .dropdown-item:hover {
        background: #c31818;
        color: #fff;
    }

.header-divider {
    border-top: 1px solid rgba(0,0,0,.08);
}

.menu-wrapper {
    padding: 14px 0;
    overflow: auto;
}

    .menu-wrapper .nav {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
    }

    .menu-wrapper .tab {
        position: relative;
    }

        .menu-wrapper .tab a {
            display: block;
            padding: 7px 7px;
            border-radius: 9px;
            text-decoration: none;
            color: #555;
            font-weight: 600;
            background: #f0f0f0;
            border: 1px solid #ffa1a1;
            transition: .35s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
        }

        .menu-wrapper .tab:hover a {
            background: linear-gradient(135deg,#c31818,#eb4343);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(195,24,24,.28);
        }

        .menu-wrapper .tab.active a {
            background: linear-gradient(135deg,#c31818,#eb4343);
            color: #fff;
            box-shadow: 0 15px 30px rgba(195,24,24,.30);
        }

.active-new {
    background: linear-gradient(135deg, #c31818, #eb4343) !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(195, 24, 24, .28) !important;
}
/*.menu-wrapper .tab.active::after{
   content:'';
   position:absolute;
   left:50%;
   transform:translateX(-50%);
   bottom:-8px;
   width:10px;
   height:10px;
   border-radius:50%;
   background:#c31818;
   }*/
@media(max-width:991px) {
    .top-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .header-nav {
        width: 100%;
        justify-content: space-between;
    }

    .menu-wrapper .nav {
        justify-content: center;
        flex-wrap: nowrap;
        width: max-content;
    }

    .h1-logo {
        font-size: 24px;
    }

    .brand-area img {
        width: 58px;
        height: 58px;
    }
}
