/* ==========================================================
   Modern Dark Replacement for ZAM Zul Bar
   Completely removes white backgrounds and old graphics
   ========================================================== */

/* no body margin offsets */
body.has-zul-bar {
    margin-top: 50px !important;
}

.zul-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 50px;
    line-height: 50px;
    padding: 0 20px;

    z-index: 5000;

    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.98),
        rgba(17, 24, 39, 0.96)
    );
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);

    color: #e5e7eb;
    font-family: system-ui, sans-serif;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Links */
.zul-bar a {
    color: #38bdf8;
    text-decoration: none;
    font-size: 14px;
    transition: color 120ms ease;
}

.zul-bar a:hover {
    color: #0ea5e9;
}

/* Search input (modern) */
.zul-bar input[type="text"] {
    height: 32px;
    padding: 4px 14px;
    margin: 0 10px;

    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;

    font-size: 14px;
    outline: none;
}

.zul-bar input[type="text"]::placeholder {
    color: #6b7280;
}

/* Buttons (login, logout, etc.) */
.zul-bar button,
.zul-bar .btn,
.zul-bar .formbtn {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border: none;
    border-radius: 999px;

    color: #0b1120;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;

    transition: box-shadow 120ms ease, transform 120ms ease;
}

.zul-bar button:hover,
.zul-bar .btn:hover,
.zul-bar .formbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.4);
}

/* Remove all old menu + icon junk */
.zul-bar-mobile-menu,
.zul-bar-mobile-menu-list,
.zul-bar-mobile-menu-back-row,
.zul-bar-sites,
.zul-bar-mobile,
.zul-bar-fade,
.zul-bar-mobile-menu-button {
    display: none !important;
}

/* Ensure no white background on ANY ZAM elements */
.zul-bar *,
.zul-bar *:before,
.zul-bar *:after {
    background: transparent !important;
    box-shadow: none !important;
}
