
/* Custom Styles for Vistatrack */

/* For gradient text */
.text-gradient {
    background: linear-gradient(to right, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* For gradient buttons */
.btn-gradient {
    background: linear-gradient(to right, #EC4899, #8B5CF6);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px 0 rgba(236, 72, 153, 0.45);
}

.btn-gradient:hover {
    background: linear-gradient(to right, #d83a87, #794adf);
    box-shadow: 0 6px 20px 0 rgba(139, 92, 246, 0.5);
}

/* Icon button styling for theme toggle */
.btn-icon {
    @apply text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5;
}

/* For fixed position theme toggle on auth pages */
.theme-toggle-fixed {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
}
