﻿:root {
    --felgen-orange: #f58220;
    --felgen-dark: #000000;
}

.felgen-search-container {
    width: 95%;
    max-width: 1000px;
    margin: -120px auto 0;
    position: relative;
    z-index: 100;
    color: gray;
}

.felgen-search-tabs {
    gap: 10px;
    padding-left: 0;
}

.felgen-search-tab-button {
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #666;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.felgen-search-tab-button.active {
    background-color: white;
    //color: var(--felgen-dark);
}

.felgen-search-tab-button.secondary-tab {
    background-color: var(--felgen-orange);
    color: white;
}

.felgen-search-form-content {
    /*min-height:300px;*/
    padding: 30px;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    
}

.vertical-line {
    border-left: 1px solid #d4d4d4;
    height: 60px;
}

.felgen-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('/new-wwwroot/assets/other/felgen2.avif');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    padding: 2rem 0;
}


@media (max-width: 768px) {
    .felgen-search-container {
        margin: 5px auto 0;
    }

    .felgen-search-tabs {
        flex-direction: column;
        gap: 5px;
    }

    .felgen-search-tab-button {
        border-radius: 8px;
        width: 100%;
        text-align: center;
    }

    .felgen-search-form-content {
        border-radius: 8px;
        margin-top: 5px;
        padding: 15px;
    }
}
