.combobox-wrapper {
    position: relative;
    width: 100%;
    color: var(--text-primary);
}

.combobox {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.combobox-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid var(--stroke-secondary-2, #79828D);
    border-radius: var(--radius-8);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    height: 44px;
    background-color: var(--surface-primary-1, #FFF);
    transition: border-color 0.2s ease;
    transition: box-shadow .2s ease-in-out;
}

.combobox-input:focus {
    outline: none;
    border-color: var(--color-blue-500);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.combobox-input:hover,input[type='text']:hover {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.combobox-toggle {
    position: absolute;
    right: 2px;
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    color: var(--text-secondary, #79828D);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* Always visible */
}

.combobox-toggle:hover {
    color: var(--text-primary, #0D1722);
}

.combobox-toggle:focus-visible{
    outline: none;
}

.combobox-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    background-color: var(--surface-primary-1, #FFF);
    border: 1px solid var(--stroke-secondary-2, #79828D);
    border-radius: var(--radius-8);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 4px;
    padding: 8px 0;
    list-style: none;
    /* Hide by opacity and move up for fade-in */
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity .1s ease-in-out, max-height .1s ease-in-out;
}

.combobox-options.show {
    /* Show with fade-in */
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.combobox-option {
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.combobox-option:hover {
    background-color: var(--surface-primary-2, #F4F6F9);
}

.combobox-option.focused {
    background-color: var(--surface-primary-2, #F4F6F9);
}

.combobox-option.selected {
    background-color: rgba(0, 123, 255, 0.1);
    font-weight: 500;
}

/* Disabled state styling */
.combobox.disabled .combobox-input {
    background-color: var(--surface-secondary-1, #F8F9FA);
    color: var(--text-tertiary, #A7B0BD);
    border-color: var(--stroke-secondary-1);
    cursor: not-allowed;
}

.combobox.disabled .combobox-input:hover {
    box-shadow: none;
}

.combobox.disabled .combobox-toggle {
    color: var(--text-tertiary, #A7B0BD);
    cursor: not-allowed;
}

.combobox.disabled .combobox-toggle:hover {
    color: var(--text-tertiary, #A7B0BD);
}

.combobox-options li[role="option"] {
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.combobox-options li[role="option"]:hover {
    background-color: var(--surface-primary-2, #F4F6F9);
}
.startWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-8);
}
.startWrapper #services-options {
    max-width: 300px;
    overflow-y: auto;
    width: 100%;
    border-radius: var(--radius-16);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

}
.start {
    border-radius: var(--radius-24);
    max-width: 320px;

}

@media (max-width: 600px) {
    .combobox-input {
        padding:12px;
    }
}