.feature-tooltip-card {
    background: white;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0px 3px 8px -2px #fffcf514;
    box-shadow: 0px 4px 32px -4px #11182714;
    width: 250px;
    position: absolute;
    z-index: 111;
    display: none;
}

.feature-tooltip-card.top-right {
    top: 50px;
    right: 100px;
}

.feature-tooltip-card.top-left {
    top: 50px;
    left: 100px;
}

.feature-tooltip-card.bottom-right {
    bottom: 50px;
    right: 100px;
}

.feature-tooltip-card.bottom-left {
    bottom: 50px;
    left: 100px;
}

.feature-tooltip-card.active {
    display: block;
}

.feature-tooltip-card::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 12px;
    background: white;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-tooltip-badge {
    display: inline-block;
    background-color: #f9f8ff;
    color: #666;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 0.5px solid #e1dfff;
    line-height: 12px;
}

.feature-tooltip-title {
    font-size: 18px;
    font-weight: 500;
    color: #170f49;
    margin-bottom: 8px;
}

.feature-tooltip-description {
    font-size: 12px;
    color: #808080;
    margin-bottom: 24px;
}

.feature-tooltip-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.feature-tooltip-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.feature-tooltip-btn-back {
    background-color: white;
    color: #011530;
    border: 1px solid #b3b3b3;
}

.feature-tooltip-btn-continue {
    background-color: #fbbc04;
    color: #011530;
}