/* Custom Select Styles */
select {
    height: 48px;
    background-color: #201f1f;
    color: #e5e2e1;
    border: 2px solid #353534;
    border-radius: 4px;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
}
select:hover {
    border-color: #a1f27b;
    background-color: #353534;
}
select:focus {
    outline: none;
    border-color: #a1f27b;
    box-shadow: 0 0 0 3px rgba(161, 242, 123, 0.2);
}
/* Custom Select Options */
select option {
    padding: 12px;
    background-color: #201f1f;
    color: #e5e2e1;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: bold;
}
/* select option:checked {
    background-color: #a1f27b !important;
    color: #0f3900 !important;
} */
/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #201f1f;
    border: 1px solid #353534;
    border-radius: 4px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: #e5e2e1;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-decoration: none;
}
.dropdown-item:hover {
    background-color: #353534;
    color: #a1f27b;
}
/* Custom Scrollbar for Select */
select::-webkit-scrollbar {
    width: 8px;
}
select::-webkit-scrollbar-track {
    background: #201f1f;
}
select::-webkit-scrollbar-thumb {
    background: #353534;
    border-radius: 4px;
}
select::-webkit-scrollbar-thumb:hover {
    background: #a1f27b;
}

/* Recommended Tag Styles */
.bg-primary\/10 {
    background-color: rgba(161, 242, 123, 0.1);
}
.text-primary {
    color: #a1f27b;
}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.rounded-full {
    border-radius: 9999px;
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.font-headline {
    font-weight: 600;
}