/* Override or Additions for Header */

.btn-signin {
    margin-left: auto;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: white !important;
    /* Force white text */
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Ensure Logo text is visible */
.logo-title {
    color: #0f172a;
}