/* =========================================
   HINT BANNER SYSTEM (web_app)
   Faz 3: İlk kullanım ipucu bantları
   ========================================= */

.hint-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 107, 53, 0.07);
    border: 1px solid rgba(255, 107, 53, 0.22);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
    animation: hint-slide-in 0.3s ease;
    position: relative;
}

.dark .hint-banner {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.28);
}

@keyframes hint-slide-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hint-hiding {
    animation: hint-slide-out 0.3s ease forwards;
}

@keyframes hint-slide-out {
    from { opacity: 1; transform: translateY(0); max-height: 120px; }
    to   { opacity: 0; transform: translateY(-8px); max-height: 0; padding: 0; margin: 0; }
}

.hint-icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.hint-body {
    flex: 1;
    min-width: 0;
}

.hint-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 2px;
}

.dark .hint-title {
    color: #fff;
}

.hint-desc {
    font-size: 12px;
    color: var(--text-secondary, #6c757d);
    margin: 0;
    line-height: 1.4;
}

.dark .hint-desc {
    color: rgba(255,255,255,0.55);
}

.hint-dismiss {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--text-muted, #adb5bd);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    margin-top: 1px;
    transition: color 0.2s;
}

.hint-dismiss:hover {
    color: var(--text-secondary, #6c757d);
}
