.staff-search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;

}

.staff-search-form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#staff-search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
}

.staff-search-form button {
    background: #2c3e50;
    border: none;
    color: white;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-search-form button:hover {
    background: #1a252f;
}

.staff-search-results {
    position: relative;
    width: 100%;
    background: white;
  /*  border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    margin-top: 10px;
    padding: 10px;
    display: block !important; /* إجبار الظهور */
    opacity: 1 !important;
    visibility: visible !important;
}

.staff-search-results-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.staff-search-results-list li {
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s;
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
}

.staff-search-results-list li:last-child {
    border-bottom: none;
}

.staff-search-results-list li:hover {
    background: #f9f9f9;
}

.staff-search-results-list a {
    text-decoration: none;
    color: #333;
    display: block;
}

.staff-search-results-list strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.staff-search-results-list span {
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.staff-search-results-list em {
    color: #2c3e50;
    font-style: normal;
    font-size: 14px;
}

.staff-no-results, .staff-searching {
    padding: 20px;
    text-align: center;
    color: #666;
}

.staff-search-error {
    padding: 15px;
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-radius: 4px;
    color: #f44336;
    margin: 10px 0;
}
