/* Smooth Custom Transitions */
.smooth-transition {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Custom scrollbar matching design system */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #F4EFE6;
}
::-webkit-scrollbar-thumb {
    background: #007A33;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00993F;
}
.text-glow {
    text-shadow: 0 4px 20px rgba(0, 122, 51, 0.1);
}
