/* Fixed Logo Sizes - Prevents Design Breakage */

/* Main Header Logo - Primary Navigation */
.main-header-one__logo a img {
    max-width: 180px !important;
    max-height: 60px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* Ensure logo container has proper alignment */
.main-header-one__logo {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

/* Sticky Header Logo */
.stricky-header .main-header-one__logo a img {
    max-width: 150px !important;
    max-height: 50px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Sidebar Logo */
.sidebar-info-contents .logo a img {
    max-width: 200px !important;
    max-height: 80px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Preloader/Widget Sidebar Logo */
.sidebar-widget-container .logo a img {
    max-width: 180px !important;
    max-height: 70px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Header Layout Fixes */
.main-header-one__bottom {
    padding: 0 !important;
}

.main-header-one__wrapper-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.main-header-one__bottom-left {
    display: flex !important;
    align-items: center !important;
    padding: 15px 0 !important;
}

.main-header-one__bottom-middle {
    display: flex !important;
    align-items: center !important;
    flex: 1 !important;
    justify-content: center !important;
}

.main-header-one__bottom-right {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

/* Menu List Alignment */
.main-menu__list {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.main-menu__list>li {
    margin: 0 15px !important;
}

/* Classic Blank Popup Styles */
.classic-popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 100000;
    /* High z-index to sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black w/ opacity */
}

.classic-popup-content {
    background-color: #fff;
    margin: 10% auto;
    /* 10% from the top and centered */
    padding: 40px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.close-classic-popup {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-classic-popup:hover,
.close-classic-popup:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}