.custom-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.custom-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #111827;
    text-transform: uppercase;
}

.custom-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.mke-logged-in-only {
    display: none;
}

.mke-logged-out-only {
    display: inline-block;
}

.custom-nav a:hover {
    background: #f3f4f6;
    color: #111827;
}

.custom-nav a:last-child {
    background: #2563eb;
    color: #ffffff;
}

.custom-nav a:last-child:hover {
    background: #1d4ed8;
    color: #ffffff;
}

@media (max-width: 600px) {
    .custom-header-inner {
        flex-direction: column;
        height: auto;
        padding: 12px 16px;
        gap: 10px;
    }

    .custom-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
