/* Card aspect ratio for placeholder elements */
.aspect-card {
    aspect-ratio: 488 / 680;
}

/* Smooth page transitions */
#app {
    min-height: calc(100vh - 4rem);
}

/* Prevent layout shift on card images */
img[loading="lazy"] {
    background-color: #f3f4f6;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
