/* Spelling Suggestions Dropdown Styles */
/* Ported from DC_PEN_Web_Main styles */

.search-suggest-box {
    position: absolute;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    max-height: 320px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.suggest-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.suggest-item:last-child {
    border-bottom: none;
}

.suggest-item:hover {
    background-color: #f5f5f5;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .search-suggest-box {
        max-height: 200px;
    }

    .suggest-item {
        padding: 12px;
        font-size: 16px; /* Larger touch targets */
    }
}
