@tailwind base;
@tailwind components;
@tailwind utilities;
/* Add this to your CSS file */
.navbar-nav .important-link a {
    font-weight: bold;
    margin-left: 50px;
}
.navbar-collapse {
    margin-left: 10px;
}
/* Default style for larger screens */
.sticky-alphabet {
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    padding-top: 2px;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
    z-index: 1000;
}
/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .sticky-alphabet {
        position: fixed;
        top: 0;
        left: 0;
        width: 30px;
        z-index: 1000;
    }
}
.d-none {
    display: none;
}
.sticky-alphabet a {
    font-size: 0.5rem;
    margin-bottom: 2px;
    display: block;
}



