
.ride-search-section {
    background: linear-gradient(135deg, rgba(15, 86, 59, 0.95) 0%, rgba(25, 135, 84, 0.9) 100%);
    min-height: 100vh;
}

.search-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.search-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
}

.search-input:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--bs-warning);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    color: white;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.filter-tag {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    color: white;
}

.filter-tag .remove-filter {
    cursor: pointer;
    margin-left: 5px;
    opacity: 0.7;
}

.filter-tag .remove-filter:hover {
    opacity: 1;
}

.search-field-group {
    position: relative;
}

.search-field-group::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bs-warning);
    z-index: 10;
    font-weight: bold;
}

.col-lg-5:last-child .search-field-group::after {
    display: none;
}

@media (max-width: 992px) {
    .search-field-group::after {
        display: none;
    }
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--bs-warning) 0%, var(--bs-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spinner-grow {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
