/* Container styling */
.khiz-search-modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.khiz-search-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.khiz-search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #05135e;
    left: 15px;
    /* Adjust based on dir */
}

/* For RTL Support */
[dir="rtl"] .khiz-search-icon {
    left: auto;
    right: 15px;
}

.khiz-search-input {
    padding: 12px 45px;
    border-radius: 10px;
    border: 2px solid #eee;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.khiz-search-input:focus {
    border-color: #05135e;
    box-shadow: none;
}

/* Results Area */
.khiz-results-container {
    max-height: 400px;
    overflow-y: auto;
}

.khiz-result-item {
    display: block;
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    font-weight: 500;
}

.khiz-result-item:hover {
    background-color: #f8f9fa;
    color: #05135e;
}

.khiz-no-result {
    text-align: center;
    padding: 20px;
    color: #888;
}