﻿/* Remove default dropdown arrow from all selects */
select.no-arrow {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
    background-repeat: none;
}

/* Optional: Adjust padding so text stays centered */
select.no-arrow {
    padding-right: 1rem;
}
/* Hide scrollbar but keep scrolling */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none; /* for Internet Explorer and Edge */
    scrollbar-width: none; /* for Firefox */
}
/* ================================
   Auth Page Headings (Brand Blue)
   ================================ */

.auth-page h1.text-title-sm,
.auth-page h1.text-title-md {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #465fff !important; /* brand blue text */
}

/* Responsive font sizes */
.auth-page h1.text-title-sm {
    font-size: 1.5rem; /* ~24px for mobile */
}

@media (min-width: 640px) {
    .auth-page h1.text-title-md {
        font-size: 2rem; /* ~32px for larger screens */
    }
}
    