/* ---------------------------------------------------------
   RobSelect — Base Styles
   Clean, neutral, motif‑friendly foundation
--------------------------------------------------------- */

.robselect-container {
    position: relative;
    width: 100%;
}

/* Input field */
.robselect-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 15px;
    background: white;
    box-sizing: border-box;
}

.robselect-input:focus {
    outline: none;
    border-color: #4a7bd0;
    box-shadow: 0 0 0 2px rgba(74,123,208,0.25);
}

/* Dropdown */
.robselect-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px; /* scrollable list */
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

/* Items */
.robselect-item {
    padding: 8px 10px;
    cursor: pointer;
}

.robselect-item:hover,
.robselect-item.active {
    background: #e8f0ff;
}

/* No match message */
.robselect-no-match {
    padding: 8px 10px;
    color: #777;
    font-style: italic;
}
