/* Add custom styles or overrides here, if necessary */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #f9a825;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       

        /* Responsive Image 
        .cropped-image {
            width: 100%;              /* Ensure image scales to container */
            /*position: relative;       /* Position relative to the container */
            /*top: -20px;               /* Move image up by 20px to crop bottom */
           /* display: block;           /* Remove inline spacing */
        /*}*/

        /* Mobile Media Queries */
        @media (max-width: 768px) {
            .image-crop-container {
                border-radius: 0px;   /* Smaller radius for smaller screens */
            }
        }