.elementor-15 .elementor-element.elementor-element-655e8b6{--display:flex;}/* Start custom CSS for html, class: .elementor-element-34f7877 *//* --- Main Container --- */
.laser-header-container {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #020024;
}

/* --- Top Header --- */
.top-header {
    background: linear-gradient(90deg, #020024 0%, #00187a 40%, #00d4ff 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    height: 70px;
}

/* --- LOGO FIX --- */
.logo-box {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-logo {
    display: block;
    max-height: 50px; 
    width: auto;
    object-fit: contain;
}

/* Login Area */
.login-box {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}

.user-icon {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

/* Inputs */
.dummy-input {
    padding: 5px 8px;
    border-radius: 3px;
    border: none;
    font-size: 13px;
    width: 120px;
    outline: none;
    height: 28px;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 0 12px;
    height: 28px;
    line-height: 28px;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
    display: inline-block;
    transition: 0.2s;
    cursor: pointer;
}

.btn:hover { opacity: 0.9; }
.btn-red { background-color: #ed1c24; border: 1px solid #c00; }
.btn-green { background-color: #008000; }
.btn-dark { background-color: #2c3e50; }

/* --- Bottom Navigation --- */
.bottom-nav {
    background: linear-gradient(to bottom, #00c6ff, #0072ff);
    border-top: 1px solid #4da6ff;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0;
}

.bottom-nav::-webkit-scrollbar {
    height: 0px; 
    background: transparent;
}

.bottom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    height: 38px;
}

.bottom-nav li {
    display: flex;
    align-items: center;
    height: 100%;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.bottom-nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 13px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    height: 100%;
    text-transform: capitalize;
}

.bottom-nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

.bg-maroon { background-color: #800000; }
.bg-maroon a { color: white !important; }
.bg-red { background-color: #d60000; }
.bg-red a { color: white !important; }

.has-badge { position: relative; padding-right: 5px; }
.badge-new {
    background-color: #ffff00;
    color: #000;
    font-size: 8px;
    font-weight: bold;
    padding: 1px 3px;
    position: absolute;
    top: 2px;
    right: 2px;
    border-radius: 2px;
    line-height: 1;
    z-index: 2;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .top-header {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        height: auto;
        padding: 10px;
    }
    
    .logo-box { width: 100%; justify-content: center; }
    .main-logo { max-height: 45px; }

    .login-box {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .dummy-input { width: 42%; font-size: 12px; }
    .btn { flex-grow: 1; text-align: center; font-size: 11px; }
    
    .user-icon { display: none; }
    .mobile-hide { display: none; }
}/* End custom CSS */