.eula-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-10%);
    margin-bottom: 10px;
    z-index: 100;
    animation: tooltipFadeIn 0.3s ease-out;
}

.tooltip-content {
    background-color: #ffc107;
    border: 2px solid skyblue;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 10%;
    transform: translateX(0%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid skyblue;
}

.tooltip-arrow::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid skyblue;
}

.tooltip-icon {
    font-size: 16px;
}

.tooltip-text {
    color: #333;
    font-weight: 500;
}

.tooltip-ok-btn {
    background-color: skyblue;
    color: #333;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tooltip-ok-btn:hover {
    background-color: #e0a800;
}

@keyframes tooltipFadeIn {
    from { 
        opacity: 0;
        transform: translateX(-10%) translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateX(-10%) translateY(0);
    }
}
