/* Custom Styles */

/* V-cloak to prevent flickering */
[v-cloak] {
    display: none;
}

/* Transitions */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s ease;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
}

/* Custom spacing per requirements */
.container {
    max-width: 1280px;
}

/* Compact spacing utility */
.spacing-compact {
    gap: 0.5rem;
}

/* Card hover effects */
.crosshair-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}
.dark ::-webkit-scrollbar-thumb {
    background: #1f2937;
}
::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* Animation utilities */
@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-slide-down {
    animation: slideDown 0.3s ease-out forwards;
}
