.venue-search {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.search-container input,
.search-container select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 200px;
}

.search-container button {
    padding: 0.8rem 1.5rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: #45a049;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.venue-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.venue-card:hover {
    transform: translateY(-5px);
}

.venue-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.venue-info {
    padding: 1.5rem;
}

.venue-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.venue-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.venue-info .location {
    color: #4CAF50;
    font-weight: 500;
}

.venue-info .price {
    font-weight: bold;
    color: #2c3e50;
}

.book-now {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.book-now:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
    }
    
    .search-container input,
    .search-container select {
        width: 100%;
    }
}