/* ... Previous styles ... */
/* Append this to the existing style.css content */

/* Custom Input Wrappers */
.custom-input-wrapper {
    position: relative;
    width: 100%;
}

/* Custom Icons */
.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
}

/* CUSTOM DROPDOWN (Select) & COMBOBOX */
.custom-dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-selected {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.dropdown-selected:hover,
.dropdown-selected.active {
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.8);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #1e293b;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s;
}

.dropdown-options.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-option {
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.dropdown-option.selected {
    background: var(--primary-color);
    color: white;
}

/* CUSTOM DATE PICKER */
.datetime-container {
    background: #1e293b;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    z-index: 100;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: none;
    width: 300px;
}

.datetime-container.show {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: bold;
    padding: 5px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-day-name {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.calendar-day {
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    color: var(--text-main);
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.1);
}

.calendar-day.active {
    background: var(--primary-color);
    color: white;
}

.time-selector {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.time-input {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    width: auto;
    text-align: center;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
}

.time-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Scrollbar for dropdowns */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}