/* Fixes für Logo und Produktbilder */

/* Logo nach rechts verschieben */
.logo-container {
    text-align: right;
    padding-right: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Gleiche Größe für alle Produktbilder */
.product-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 10px;
}

/* Tablet und Desktop Anpassungen */
@media (min-width: 768px) {
    .logo-container {
        text-align: right;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .logo-container {
        text-align: right;
        padding-right: 2.5rem;
    }
}

/* Verfeinerte Platzhalter-Styling */
#assistantResponse .placeholder-text {
    color: #666 !important;
    font-style: italic;
    padding: 35px 25px !important;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 10px !important;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#assistantResponse .placeholder-text svg {
    margin-bottom: 15px;
    opacity: 0.4;
}

/* Verstecke die blaue Box, wenn sie leer ist */
#questionBox:empty {
    display: none !important;
}

/* Entferne den blauen Balken bei leerer Antwortbox */
#assistantResponse:not(:has(.follow-up-section)) .question-box {
    display: none !important;
}

/* Keine Schattierung für Platzhalter */
#assistantResponse:only-child {
    box-shadow: none !important;
    background: transparent !important;
}

/* Footer-Anpassungen - Affiliatetext mittig */
footer .affiliate-text {
    text-align: center !important;
    font-size: 12px;
    color: #777;
    font-style: italic;
    display: block;
    width: 100%;
}

/* Suchstatus-Anpassungen */
.search-message {
    color: #000000 !important;
}

.search-message::before {
    border-color: #4a90e2 !important;
    border-top-color: transparent !important;
}

/* Wartetext-Anpassungen */
.waiting-text {
    color: #000000 !important;
    font-weight: bold;
    font-size: 22px;
    text-shadow: 
        -0.5px -0.5px 0 #fff,  
        0.5px -0.5px 0 #fff,
        -0.5px 0.5px 0 #fff,
        0.5px 0.5px 0 #fff;
} 