/**
 * Event Search Bar Styles
 */

.event-search-bar-wrapper {
    margin: 40px 0;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.event-search-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.event-search-field {
    flex: 1 1 200px;
    min-width: 200px;
}

.event-search-input,
.event-search-select,
.event-search-date {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.event-search-input:focus,
.event-search-select:focus,
.event-search-date:focus {
    outline: none;
    border-color: #2271b1;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.event-search-button {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #2271b1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-search-button:hover {
    background: #135e96;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.event-search-clear {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    text-align: center;
    text-decoration: none;
    background: #f5f5f5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.event-search-clear:hover {
    color: #333;
    background: #e8e8e8;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .event-search-bar {
        flex-direction: column;
    }

    .event-search-field {
        flex: 1 1 100%;
        min-width: 100%;
    }
}