.text-primary {
    color: var(--primary) !important;
}

.text-primary2 {
    color: var(--primary2) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-accent2 {
    color: var(--accent2) !important;
}

.text-muted {
    color: var(--muted) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-title {
    color: var(--title-color) !important;
}

.bg-card {
    background-color: var(--card) !important;
}

.bg-card2 {
    background-color: var(--card2) !important;
}

.rounded-lg {
    border-radius: var(--radius) !important;
}

.rounded-md {
    border-radius: var(--radius2) !important;
}

.shadow-premium {
    box-shadow: var(--shadow) !important;
}

/* Animations */
@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 138, 107, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(79, 138, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 138, 107, 0);
    }
}

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

.border-primary {
    border-color: rgba(79, 138, 107, 0.3) !important;
}

/* Layout helpers */
.min-vh-80 {
    min-height: 80vh !important;
}
