/* Yezra General Styles */
:root {
    --yezra-cyan: #00d2ff;
    --yezra-dark: #1a1a1a;
    --yezra-terminal-bg: #121212;
    --yezra-terminal-green: #33ff33;
}

body {
    background-color: #f0f2f5;
    color: #333;
}

/* Profesyonel Terminal Görünümü */
#responseOutput {
    background: var(--yezra-terminal-bg);
    color: var(--yezra-terminal-green);
    font-family: 'Fira Code', 'Courier New', monospace;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    min-height: 250px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Küçük İstatistik Kartları */
.stat-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card .icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* İşlem Listesi (Butonlar Yerine) */
.action-item {
    border-left: 4px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
    font-weight: 500;
}

.action-item:hover {
    background-color: #f8f9fa;
    border-left-color: var(--yezra-cyan);
    padding-left: 20px !important;
}

.action-item i {
    width: 25px;
    color: #666;
}