/* Hide scrollbar for gallery but keep functionality */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Custom checkbox styles */
.custom-checkbox:checked {
    background-color: #4d7d67;
    border-color: #4d7d67;
}

/* Admin lock screen shake animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}