@keyframes fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.2s ease-out;
}

/* Tabs */
.tab-btn {
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: rgb(161, 161, 170);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
}

.tab-btn:hover {
    color: rgb(63, 63, 70);
}

.tab-btn.active {
    background: white;
    color: rgb(24, 24, 27);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Color dots */
.color-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.15s;
}

.color-dot span {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.color-dot:hover {
    border-color: rgb(212, 212, 216);
}

.color-dot.active {
    border-color: rgb(139, 92, 246);
}

/* Action buttons */
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 18px;
    border-radius: 12px;
    background: rgb(250, 250, 250);
    border: 1px solid rgb(228, 228, 231);
    font-size: 14px;
    font-family: inherit;
    color: rgb(113, 113, 122);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.action-btn:hover {
    background: rgb(244, 244, 245);
    color: rgb(24, 24, 27);
}
