
/* ===== TOP NAV ===== */
:root {
    --maroon: #4a1a12;
    --maroon-dark: #3a1310;
    --cream: #f4efe4;
    --text-dark: #2b2b1f;
    --radius: 6px;
}

/* ===== TOP NAV ===== */

.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--cream);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Left Side */





.search-link {
    display: flex;
    align-items: right;
    gap: 8px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color .2s;
}

.top-links a:hover {
    color: var(--maroon);
}

/* Right Side */


.login-box input {
    width: 145px;
    padding: 8px 10px;
    border: 1px solid #c9c1b3;
    border-radius: var(--radius);
    font-size: .9rem;
    
}

.login-box .buttons {
    background: var(--maroon);
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 8px 18px;
    /* font-weight: 400; */
     /* cursor: pointer; */
    margin: 0;                 /* REMOVE margin-top */
    transition: background .2s;
}

.login-box .buttons:hover {
    background: var(--maroon-dark);
}

#loginResult {
    width: 100%;
    height: 20px;
    margin-top: 6px;
    color: #b00020;
    font-size: .8rem;
    text-align: right;
}



.topnav {
    background: var(--cream);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    padding: 14px 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.login-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.login-box form {
    display: flex;
    align-items: center;
    gap: 10px;
}