/* Regular Buttons */
.btn {
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-500);
    border: none;
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-600);
}

.btn-outline-primary {
    color: var(--primary-500);
    border-color: var(--primary-500);
}

.btn-outline-primary:hover {
    background-color: var(--primary-500);
    border-color: transparent;
    color: white;
}

/* Feature Buttons - For highlighting important actions */
.btn-feature {
    background: linear-gradient(to right, #6f42c1, #4285f4);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    color: white;
}

.btn-feature.active {
    background: linear-gradient(to right, #6f42c1, #4285f4);
    color: white !important;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

.btn-feature.active:hover {
    color: white !important;
}

/* Ensure text and icons stay white in active state */
.btn-feature.active span,
.btn-feature.active i {
    color: white !important;
}

.btn-feature.active:hover span,
.btn-feature.active:hover i {
    color: white !important;
}

/* Feature Button Variations */
.btn-feature-sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
}

.btn-feature-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Feature Button Colors */
.btn-feature-success {
    background: linear-gradient(to right, #34a853, #4285f4);
}

.btn-feature-warning {
    background: linear-gradient(to right, #fbbc05, #ea4335);
}

.btn-feature-danger {
    background: linear-gradient(to right, #ea4335, #d93025);
}
