/* Auth Links Styles */
.auth-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-links a,
.auth-links button {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-login {
    background: transparent;
    color: #dff0d8;
    border: 2px solid #dff0d8;
}

.btn-login:hover {
    background: #dff0d8;
    color: #2c3e50;
}

.btn-register {
    background: #dff0d8;
    color: #2c3e50;
    border: 2px solid transparent;
}

.btn-register:hover {
    background: #c8e6c9;
    color: #2c3e50;
}

.btn-dashboard {
    background: #dff0d8;
    color: #2c3e50;
    border: 2px solid transparent;
}

.btn-dashboard:hover {
    background: #c8e6c9;
    color: #2c3e50;
}

.btn-logout {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-logout:hover {
    background: #e74c3c;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-links {
        flex-direction: column;
        gap: 5px;
    }

    .auth-links a,
    .auth-links button {
        padding: 6px 12px;
        font-size: 12px;
    }
}
