.lazyload {
    opacity: 0.5;
    transition: opacity .3s ease-in-out;
}

img[src] {
    opacity: 1;
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.animate-slide-in-right {
    animation: slideInRight 0.5s ease-out;
  }
  .animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
  }
  .animate-slide-in-left {
    animation: slideInLeft 0.5s ease-out;
  }
  .rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.rotate-0 {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}
.sort-icon {
    margin-left: 4px;
    opacity: 0.5;
}
.sort-asc .sort-icon {
    opacity: 1;
    content: '↑';
}
.sort-desc .sort-icon {
    opacity: 1;
    content: '↓';
}
.table-container {
    max-height: 500px;
    overflow-y: auto;
}
.sticky-header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
}
