
.exhibitor-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* padding: 10px 0; */
    /* gap: 20px; */
}

/* Exhibitor Logo Section */
.exhibitor-logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.exhibitor-logo-img {
    max-height: 50px !important;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Left Aligned Content Section */
.exhibitor-content-left {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    justify-content: center;
    min-width: 0; /* Prevents flex item from overflowing */
}

.exhibitor-event-info {
    margin-bottom: 0px;
}

.exhibitor-event-dates {
    color: #fff !important;
    font-size: 18px;
    margin: 0 0 4px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exhibitor-event-address {
    font-size: 16px !important;
    color: #fff !important;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exhibitor-corporate-info {
    margin-top: 5px;
}

.exhibitor-corporate-link {
    color: #444 !important;
    font-size: 12px;
    margin: 0;
    font-weight: 400;
    line-height: 1.3;
}

.exhibitor-corporate-anchor {
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
}

.exhibitor-corporate-anchor:hover {
    color: #ffffff !important;
    text-decoration: none;
}

/* Exhibitor Profile Dropdown */
.exhibitor-desktop-profile {
    position: relative;
    flex-shrink: 0;
}

.exhibitor-profile-dropdown .dropdown-toggle::after {
    display: none;
}

/* Exhibitor Dropdown Menu */
.exhibitor-dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    padding: 0;
    min-width: 220px;
    overflow: hidden;
}

.exhibitor-dropdown-header {
    padding: 15px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.exhibitor-dropdown-user {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.exhibitor-dropdown-role {
    font-size: 12px;
    opacity: 0.8;
}

.exhibitor-dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    /* margin: 5px 0; */
}

.exhibitor-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 14px;
    transition: all 0.3s ease;
}

.exhibitor-dropdown-item:hover {
    background: #f8f9fa;
    color: #1e3c72;
}

.exhibitor-dropdown-icon {
    margin-right: 10px;
    color: #1e3c72;
    width: 16px;
    text-align: center;
}

.exhibitor-logout-item {
    color: #dc3545 !important;
}

.exhibitor-logout-item:hover {
    background: #dc3545 !important;
    color: white !important;
}

.exhibitor-logout-item:hover .exhibitor-dropdown-icon {
    color: white !important;
}

/* Exhibitor Mobile Toggle */
.exhibitor-mobile-toggle {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: 15px;
}

.exhibitor-menu-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: all 0.3s ease;
}

.exhibitor-menu-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.exhibitor-menu-toggle-bar {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Exhibitor Mobile Menu Overlay */
.exhibitor-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Exhibitor Mobile Menu */
.exhibitor-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    /* box-shadow: -2px 0 20px rgba(0,0,0,0.15); */
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.exhibitor-mobile-menu.mobile-menu-open {
    transform: translateX(0);
}

.exhibitor-menu-header {
    padding: 20px;
    /* background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); */
    background-color: #3dbca7;
    /* color: white; */
    position: relative;
    flex-shrink: 0;
}

.exhibitor-menu-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #424242;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibitor-user-info {
    text-align: center;
    margin-top: 20px;
}

.exhibitor-user-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.exhibitor-user-role {
    font-size: 14px;
    opacity: 0.9;
}

/* Exhibitor Menu Content */
.exhibitor-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.menu-section {
    margin-bottom: 0px;
}

.exhibitor-section-title {
    font-size: 14px;
    color: #1e3c72;
    /* margin-bottom: 12px; */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e0e0e0;
    font-family: "Poppins", sans-serif;
    /* padding-bottom: 8px; */
}

.exhibitor-detail-text {
    /* font-size: 13px;
    color: #666; */
    margin-bottom: 5px;
    /* line-height: 1.4; */
}

/* .exhibitor-detail-address {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
} */

/* Exhibitor Menu Links */
.exhibitor-menu-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
     /* padding: 5px 0px; */
}

.exhibitor-menu-link:hover {
    color: #1e3c72;
    background: #f8f9fa;
    padding-left: 10px;
}

.exhibitor-menu-icon {
    margin-right: 10px;
    color: #1e3c72;
    width: 16px;
    text-align: center;
}

.exhibitor-logout-btn {
    color: #dc3545 !important;
}

.exhibitor-logout-btn:hover {
    color: white !important;
    background: #dc3545 !important;
}

/* Exhibitor Specific Section */
.exhibitor-specific-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.exhibitor-specific-section .exhibitor-section-title {
    color: #2a5298;
    border-bottom-color: #d0d7e7;
}


.user-in {
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
}
.profile-1 {
    top: -30px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .exhibitor-content-left {
        display: none;
    }
}

@media (max-width: 768px) {
    .exhibitor-header-wrapper {
        padding: 8px 0;
        gap: 15px;
    }
    
    .exhibitor-logo-img {
        max-height: 40px !important;
    }
    
    .exhibitor-mobile-menu {
        width: 280px;
    }
    
    .exhibitor-menu-content {
        padding: 15px;
    }
    
    .exhibitor-event-dates {
        font-size: 15px;
    }
    
    .exhibitor-event-address {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .exhibitor-mobile-menu {
        width: 100%;
    }
    
    .exhibitor-menu-header {
        padding: 5px;
    }
    
    .exhibitor-header-wrapper {
        gap: 10px;
    }
}

/* Animation for mobile menu */
@keyframes exhibitorSlideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes exhibitorSlideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

/* Loading state for exhibitor */
.exhibitor-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Exhibitor badge style */
.exhibitor-badge {
    background: #ff6b35;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}
