/*Blogbeiträge*/
.newsbox {
    border-radius: 10px;
    padding-bottom: 0;

    .newsbox-header {
        .newsbox-image img {
            border-radius: 10px 10px 0 0;
        }
    }

    .newsbox-body {
        .newsbox-headline {
            text-decoration: none;

            .card-title {
                color: var(--color-3);
                font-size: 18px;
                min-height: 54px;
                display: block;

                &:hover {
                    color: #52c4aa;
                }
            }
        }
    }

    .newsbox-footer a {
        color: #fff;
        text-decoration: none;
    }

    .btn-secondary {
        min-width: 100px;
        display: flex;
        justify-content: center;
        text-transform: uppercase;
    }

}

.blog-details {
    .h2 {
        color: var(--color-3);
    }

    article {
        background-color: #fff;
        border-radius: 10px;

        h1 {
            color: var(--color-3);
        }
    }

    .slick-track {
        margin-bottom: 1rem;
    }
}

/*Blogbeiträge ENDE*/

/*Suche im Filter (Produktübersicht)*/
#sidepanel_left .box-filter-characteristics {
    .input-group > .form-control:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-left: none;
    }

    span.input-group-text {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        background-color: unset;
        padding: 10px 6px;
        height: 30px;
    }

    input.form-control {
        border-radius: 0 5px 5px 0;
        padding-left: 0;
        height: 30px;
        border-color: #10354f;

        &::placeholder {
            color: #10354f;
        }
    }
}
/*Suche im Filter ENDE*/

/* Fahrzeug-Dropdown Styling */
.cars-icon {
    position: relative;
}

.fahrzeug-dropdown {
    min-width: 280px;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    border: none;
}

/* Desktop Version */
.fahrzeug-desktop {
    display: block;
}

.fahrzeug-header {
    background-color: white;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.fahrzeug-header h5 {
    margin: 0;
    font-weight: 600;
    color: #343a40;
    font-size: 18px;
}

.fahrzeug-body {
    padding: 15px;
    background-color: white;
}

.fahrzeug-info {
    display: flex;
    margin-bottom: 20px;
}

.fahrzeug-logo {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fahrzeug-logo img {
    max-width: 100%;
    max-height: 100%;
}

.fahrzeug-logo i {
    color: #52c4aa;
}

.fahrzeug-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fahrzeug-detail {
    margin-bottom: 5px;
    font-size: 14px;
    display: flex;
}

.fahrzeug-detail span {
    font-weight: 600;
    min-width: 65px;
    display: inline-block;
}

.fahrzeug-actions {
    display: flex;
    justify-content: center;
}

.fahrzeug-actions .btn {
    width: 100%;
    font-size: 14px;
    padding: 10px 15px;
    background-color: #52c4aa;
    border-color: #52c4aa;
    text-transform: none;
}

.fahrzeug-actions .btn:hover {
    background-color: #41b397;
    border-color: #41b397;
}

/* Mobile Version */
.fahrzeug-mobile {
    display: none;
    width: 100%;
}

.fahrzeug-mobile-header {
    display: flex;
    padding: 15px;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

.fahrzeug-mobile-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fahrzeug-mobile-icon i {
    font-size: 24px;
    color: #333;
}

.fahrzeug-mobile-details {
    flex: 1;
}

.fahrzeug-mobile-actions {
    padding: 15px;
    background-color: #52c4aa;
}

.fahrzeug-mobile-actions .btn {
    color: white;
    border: none;
    font-weight: 500;
    background-color: transparent;
}

/* Responsive Anpassungen */
@media (max-width: 767px) {
    .fahrzeug-desktop {
        display: none;
    }
    
    .fahrzeug-mobile {
        display: block;
    }
    
    .fahrzeug-dropdown {
        width: 100%;
        max-width: 100%;
        position: relative;
        margin-top: 0;
        border-radius: 0;
    }
    
    .fahrzeug-info {
        flex-direction: column;
    }
    
    .fahrzeug-logo {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .fahrzeug-logo i {
        font-size: 2.5rem;
    }
}
/* Fahrzeug-Dropdown Styling ENDE */
