/* Bike page specific styles */
.bike-page-content {
    max-width: 1200px; /* Match the header width */
    margin: 40px auto; /* Added top and bottom margin */
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Form container styles */
.bike-search-form {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 20px 0;
}

/* Input fields styling */
.bike-search-form input[type="text"],
.bike-search-form input[type="date"],
.bike-search-form input[type="time"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Search button styling */
.bike-search-form .search-button {
    background: #00bfa5;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
}

.bike-search-form .search-button:hover {
    background: #00a895;
}

/* Responsive layout */
@media (min-width: 768px) {
    .bike-search-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .bike-search-form .search-button {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .bike-page-content {
        padding: 0 10px;
    }
}
