/* Button Styling */
.search-button,
.clear-filters {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 150px;
    text-align: center;
}

/* Clear Filters Button Specific Color */
.clear-filters {
    background-color: #dc3545;
}

/* Hover Effects */
.search-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.clear-filters:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px; /* Controls button spread */
    margin: 20px auto; /* Center the button container */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 15px;
    }

    .search-button,
    .clear-filters {
        width: 100%;
    }
}
