/* =============================================
   Technotester AI Widget Stilleri
   ============================================= */

/* AI Özet Kutusu */
.techno-ai-summary {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #0f3460;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 24px 0;
    color: #e0e0e0;
    font-family: inherit;
}
.techno-ai-summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.techno-ai-icon { font-size: 20px; }
.techno-ai-summary-header strong {
    flex: 1;
    color: #00d4ff;
    font-size: 15px;
}
.techno-summary-btn {
    background: #00d4ff;
    color: #1a1a2e;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.techno-summary-btn:hover { background: #00b8e6; transform: translateY(-1px); }
.techno-summary-btn:disabled { background: #555; color: #aaa; cursor: not-allowed; transform: none; }
.techno-summary-content {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #0f3460;
    line-height: 1.7;
    color: #c8c8c8;
    font-size: 14px;
}

/* Akıllı Arama */
.techno-ai-search {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}
.techno-ai-search input {
    flex: 1;
    min-width: 200px;
    padding: 10px 16px;
    border: 2px solid #0f3460;
    border-radius: 8px;
    background: #1a1a2e;
    color: #e0e0e0;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.techno-ai-search input:focus { border-color: #00d4ff; }
#techno-search-btn {
    background: #00d4ff;
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}
#techno-search-btn:hover { background: #00b8e6; }
#techno-search-results {
    width: 100%;
    background: #16213e;
    border: 1px solid #0f3460;
    border-radius: 10px;
    padding: 16px;
    margin-top: 4px;
}
.techno-search-ai-answer {
    color: #c8c8c8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #0f3460;
}
.techno-search-posts a {
    display: block;
    color: #00d4ff;
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
    transition: color 0.2s;
}
.techno-search-posts a:hover { color: #fff; }
.techno-search-posts span { color: #666; font-size: 12px; margin-left: 6px; }

/* İçerik Önerileri */
.techno-ai-recommend {
    background: #16213e;
    border: 1px solid #0f3460;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}
.techno-ai-recommend h4 {
    margin: 0 0 14px;
    color: #00d4ff;
    font-size: 16px;
}
.techno-recommend-item {
    padding: 10px 0;
    border-bottom: 1px solid #0f3460;
}
.techno-recommend-item:last-child { border-bottom: none; }
.techno-recommend-item a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s;
}
.techno-recommend-item a:hover { color: #00d4ff; }

/* Loading spinner */
.techno-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #555;
    border-top-color: #00d4ff;
    border-radius: 50%;
    animation: techno-spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes techno-spin { to { transform: rotate(360deg); } }
