/* Custom Scrollbar für den echten Terminal-Look */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #090d16;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #facc15;
}

/* Terminal Glow & Custom Utilities */
.terminal-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(250, 204, 21, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.terminal-card:hover {
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.05);
}

/* Der blinkende Cursor aus der helper.py Simulation */
@keyframes pulse-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.cli-cursor {
    animation: pulse-cursor 1s step-start infinite;
}

/* Sanftes Einblenden für neue Chat-Blasen */
.msg-fade-in {
    animation: fadeIn 0.25s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}