@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typing-container {
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid black;
    animation: blink 0.7s step-end infinite;
    color: #fe5a58;
    /* Animated text color */
}

/* Custom styles for pricing cards */
.pricing-card {
    transition: all 0.3s ease;
    height: 100%;
}

.nav-tabs .nav-link {
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background-color: #f8f9fa;
    color: #007bff;
    border-color: #dee2e6 #dee2e6 #f8f9fa;
}

.save-badge {
    font-size: 0.7rem;
    margin-left: 10px;
}

/* Fade animation for tab content */
.tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.tab-pane.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.tab-content {
    position: relative;
}


.text-truncate-1 {
    -webkit-line-clamp: 3;
}

.text-truncate-1 {
    display: -webkit-box;
    overflow: hidden;
    white-space: initial !important;
    -webkit-box-orient: vertical;
}
