/* Neowake KI-Such-Widget Stile */

#neowake-empfehlung-widget-container {
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #f5f5f5;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#neowake-empfehlung-widget-container h2 {
    font-size: 24px;
    color: #f5f5f5;
    margin-top: 0;
    margin-bottom: 8px;
    font-family: 'Futura PT Medium';
}

#neowake-empfehlung-widget-container .ne-widget-header p {
    color: #f5f5f5;
}

#neowake-empfehlung-widget-container p {
    font-size: 16px;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.ne-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

#ne-user-query {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

#ne-user-query:focus {
    outline: none;
    border-color: #f3984a;
}

#ne-submit-query {
    padding: 10px 20px;
    background-image: linear-gradient(472deg, #eb6541 27%, #f3984a 56%);
    color: #f5f5f5;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-image 0.3s;
    font-family: "Futura PT Bold", Sans-serif !important;
}

#ne-submit-query:disabled {
    background-image: linear-gradient(472deg, #a0a5aa 27%, #a0a5aa 56%);
    cursor: not-allowed;
}

#ne-loading-spinner {
    text-align: center;
    padding: 40px 20px;
}

#ne-loading-spinner p {
    font-size: 16px;
    color: #f5f5f5;
    margin-top: 15px;
}

.ne-loader {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ne-loader-dot {
    width: 12px;
    height: 12px;
    background-color: #f3984a;
    border-radius: 50%;
    animation: ne-dot-bounce 1.4s infinite ease-in-out both;
}

.ne-loader-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.ne-loader-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes ne-dot-bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.0);
  }
}

#ne-results-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ne-result-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background-color: #000;
    border-radius: 6px;
    transition: box-shadow 0.3s;
}

.ne-result-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.ne-result-image-link {
    flex-shrink: 0;
}

.ne-result-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.ne-result-content {
    flex-grow: 1;
}

.ne-result-content h3 {
    background: linear-gradient(90deg, #EB6541 27%, #F3984A 56%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-family: 'GILROY BOLT' !important;
}

.ne-result-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: #f5f5f5;
    font-size: 14px;
}

.ne-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ne-meta-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    color: #f5f5f5;
}

.ne-meta-answer {
    color: #f5f5f5;
}

.ne-result-reason {
    font-size: 15px;
    color: #f5f5f5;
    line-height: 1.6;
    margin: 0;
}

/* Stile für zusätzliche Sessions */
.ne-additional-title {
    font-family: 'Futura PT Medium';
    font-size: 20px;
    color: #f5f5f5;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 25px;
    border-top: 1px solid #e3e3e3;
}

.ne-main-title {
    font-family: 'Futura PT Medium';
    font-size: 20px;
    color: #f5f5f5;
    margin-bottom: 0px;
}

#ne-additional-results-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsive Stile */
@media (max-width: 600px) {
    #neowake-empfehlung-widget-container {
        padding: 15px;
    }

    #neowake-empfehlung-widget-container h2 {
        font-size: 20px;
    }

    .ne-search-form {
        flex-direction: column;
    }

    .ne-result-item {
        flex-direction: column;
        gap: 15px;
    }

    .ne-result-item img {
        width: 100%;
        height: 180px; /* Eine feste Höhe für einheitliches Aussehen */
    }

    .ne-result-content {
        padding: 0; /* Padding wird vom Elternelement übernommen */
    }
    
    #ne-user-query {
        font-size: 14px;
    }
} 