/* Sikh Gurus & Sahibzade AI Search Tool - Styles */
.sikh-search-tool {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: auto;
}

.sikh-search-tool h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.sikh-search-tool input {
    width: 90%;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

#suggestions {
    width: 90%;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute;
    z-index: 1000;
    max-width: 580px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.suggestion-item:hover {
    background: #f1f1f1;
}

.event-list {
    text-align: left;
    max-height: 400px;
    overflow-y: auto;
}

.event {
    background: #ffcc00;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.2s;
}

.event:hover {
    transform: scale(1.03);
    background: #ffbb00;
}
