input,
textarea,
select {
    font-family: inherit;
}

input:disabled {
    background-color: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

/* Search Input */
.search-input {
    flex: 1 1 auto;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px 0 0 6px;
    outline: none;
}

/* Search Form */
.search-form {
    display: flex;
    width: 100%;
}

/* Dropdown Buttons */
.dropdown-button {
    background: none;
    border: none;
    font-weight: 500;
    color: #f97316;
    cursor: pointer;
}

.dropdown-arrow {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #374151;
    border-radius: 12px;
    padding: 8px 0;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    color: #e5e7eb;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #4b5563;
    color: #fff;
}