/* =========================
   AUTH DROPDOWN
========================= */

.service-header {
    position: relative;
}

/* Wrapper */
.auth-bar {
    position: absolute;
    top: 20px;
    right: 30px;
}

/* Dropdown container */
.auth-dropdown {
    position: relative;
    display: inline-block;
}

/* Trigger button */
.auth-trigger {
    cursor: pointer;
    font-weight: 500;
    color: #333;
    background: none;
    border: none;
    font-size: 14px;
    padding: 6px 10px;
}

/* Dropdown menu */
.auth-menu {
    position: absolute;
    top: 100%;
    right: 0;

    background: #ffffff;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    z-index: 2000;

    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.18s ease;
}

/* Show on hover */
.auth-dropdown:hover .auth-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Links */
.auth-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
}

.auth-menu a:hover {
    background: #f5f5f5;
}