/* Roses in Review feature-specific CSS */
.search-container {
    border: 2px solid #ccc;
    background: #f9f9f9;
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.rir-dashboard-list {
    list-style: none;
    padding: 0;
}

.rir-dashboard-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.rir-dashboard-list li:last-child {
    border-bottom: none;
}

/* Rose-name typeahead suggestions */
.rir-suggest {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 1000;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 240px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.rir-suggest li {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.rir-suggest li:hover {
    background: #f0f0f0;
}
