/* --- ELITE TRADING DICTIONARY CSS --- */

.dict-container {
    font-family: 'JetBrains Mono', monospace; /* Vibes coding terminal */
}

/* Kolom Search */
.search-box-elite {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(192, 132, 252, 0.3); /* Ganti ungu */
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 300px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}
.search-box-elite:focus-within {
    border-color: #c084fc; /* Ganti ungu */
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.2), inset 0 0 10px rgba(0,0,0,0.5);
    background: rgba(20, 15, 30, 0.8);
}
.search-box-elite i { color: #a855f7; } /* Ganti ungu */
.search-box-elite input {
    background: transparent; border: none; outline: none;
    color: #fff; width: 100%; font-family: monospace; font-size: 13px; font-weight: 800;
}
.search-box-elite input::placeholder { color: #666; }

/* Judul Kategori */
.dict-section-title {
    color: #c084fc; /* Ganti ungu */
    font-size: 16px; /* Digedein */
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(192, 132, 252, 0.3); /* Ganti ungu */
}

.dict-divider {
    width: 100%; height: 1px; 
    background: rgba(255,255,255,0.05); 
    margin: 40px 0;
}

/* Barisan Tiap Istilah */
.dict-row {
    display: flex;
    gap: 30px;
    padding: 20px;
    border-bottom: 1px dashed rgba(255,255,255,0.05); 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-items: flex-start;
    border-radius: 12px;
    border: 1px solid transparent;
    position: relative;
}

/* Hover Row */
.dict-row:hover {
    background: rgba(192, 132, 252, 0.05); /* Ganti ungu */
    border-color: rgba(192, 132, 252, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transform: translateX(5px);
}

.dict-row:last-child { border-bottom-color: transparent; }

/* Kolom Kiri: Nama Term */
.dict-term {
    width: 200px; /* Dilebarin biar muat font gede */
    flex-shrink: 0;
}
.dict-term h4 {
    margin: 0 0 6px 0;
    color: #ffffff; /* Ganti putih elite */
    font-size: 18px; /* Digedein */
    font-weight: 900;
    letter-spacing: -0.5px;
}
.dict-term small {
    color: #a855f7; /* Badge sub-judul ungu */
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 800;
}

/* Kolom Kanan: Deskripsi */
.dict-desc {
    color: #e4e4e7; /* Lebih terang */
    font-size: 14px; /* Digedein */
    line-height: 1.8; /* Dikasih spasi napas */
    flex: 1;
    font-family: 'Inter', sans-serif;
}

/* Tombol Delete Dinamis (Tersembunyi, Muncul pas di-hover) */
.dict-delete-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    background: rgba(239, 83, 80, 0.1);
    color: #ef5350;
    border: 1px solid rgba(239, 83, 80, 0.3);
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dict-row:hover .dict-delete-btn {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.dict-delete-btn:hover {
    background: #ef5350;
    color: #fff;
    box-shadow: 0 0 15px rgba(239, 83, 80, 0.5);
}

/* Highlight Colors (Sesuai original lu) */
.highlight-orange { color: #a615fa; font-weight: 800; text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 3px; }
.highlight-cyan { color: #00e5ff; font-weight: 800; }
.highlight-green { color: #4ade80; font-weight: 800; }
.highlight-red { color: #ef5350; font-weight: 800; }