/* tooltip.css - SUPER SIMPLE */
.irab-word {
    cursor: pointer;
    border-bottom: 1px dotted #667eea;
    display: inline-block;
}

.tooltip-content {
    position: fixed;
    background: #2d3748;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    z-index: 99999; /* PALING ATAS */
    max-width: 300px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.tooltip-content.show {
    visibility: visible;
    opacity: 1;
}

.tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #4a5568;
}

.tooltip-arabic {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
}

.tooltip-type {
    background: #667eea;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.tooltip-detail {
    margin-bottom: 6px;
}

.tooltip-label {
    font-weight: bold;
    color: #a0aec0;
    font-size: 12px;
    margin-bottom: 2px;
}

.tooltip-value {
    color: #e2e8f0;
    font-size: 13px;
}

.tooltip-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    z-index: 100000; /* LEBIH TINGGI LAGI */
}