/* Mega Menu Styles */
.mega-menu-wrapper {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.container-fluid, .px-lg-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.mega-menu-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 2px;
    padding: 0;
    background-color: #50113c;
}

.mega-menu-item {
    position: static;
    /* Required for full width mega menu */
}

.mega-menu-link {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.mega-menu-item:hover .mega-menu-link {
    color: var(--secondary-color, #021863);
    border-bottom-color: var(--secondary-color, #f43397);
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    border-top: 1px solid #eee;
}

.mega-menu-item:hover .mega-menu-content {
    display: flex;
}

.mega-menu-sidebar {
    width: 250px;
    background: #f8f9fa;
    padding: 20px 0;
    border-right: 1px solid #eee;
    flex-shrink: 0;
}

.mega-menu-sidebar-item {
    padding: 10px 25px;
    color: #d11e74;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.mega-menu-main {
    flex-grow: 1;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    width: 100%;
    background: #fff;
}

.mega-menu-column {
    padding: 20px 8px;
    border-right: 1px solid #f1f5f9;
    transition: background 0.2s;
    min-height: 100%;
    word-wrap: break-word;
}

.mega-menu-column:last-child {
    border-right: none;
}

.mega-menu-column:nth-child(even) {
    background: #fdf2f7;
}

.mega-menu-column:hover {
    background: #fff !important;
}

.mega-menu-column h6 {
    font-weight: 700;
    color: var(--secondary-color, #f43397);
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: capitalize;
    display: block;
    line-height: 1.2;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 8px;
}

.mega-menu-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.mega-menu-column ul li a:hover {
    color: #333;
}

/* User Profile Picture Styles */
.rounded-circle {
    border-radius: 50% !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-white {
    border-color: #ffffff !important;
}

.border-opacity-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.fw-extrabold {
    font-weight: 900 !important;
}

.avatar-glow-desktop {
    box-shadow: 0 0 20px rgba(244, 51, 151, 0.5) !important;
    transition: box-shadow 0.3s ease !important;
}

.avatar-glow-desktop:hover {
    box-shadow: 0 0 30px rgba(244, 51, 151, 0.8) !important;
}

/* Hide Chat Toggle Button */
button#chat-toggle-btn {
    display: none !important;
}