/* Custom dropdown container */
.custom-dropdown {
    position: relative;
    width: 130px;
    cursor: pointer;
    font-size: 16px;
    color: white;
	font-family:"Oswald";
	text-transform:Uppercase;
}

/* Selected item */
.dropdown-selected {
    background: none;
    border-bottom: 2px solid #cf3339;
    padding: 6px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

/* Dropdown arrow */
.dropdown-selected::after {
    content: "▼";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #cf3339;
}

/* Options list */
.dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 2px solid #cf3339;
    background: black;
    color: white;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

/* Options styling */
.dropdown-options li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #cf3339;
    transition: background 0.3s ease;
}

/* Hover effect */
.dropdown-options li:hover {
    background: rgba(255, 0, 0, 0.2); /* Light red hover effect */
}

/* Active selection */
.dropdown-options .active {
    background: #cf3339;
    color: white;
}

/* Show dropdown when clicked */
.custom-dropdown.open .dropdown-options {
    display: block;
}
