/* Placeholder for custom styles if needed */

body {
    /* Example: Define custom font if not using Tailwind defaults */
}

/* Add styles for loading overlay spinner if Tailwind spin is not sufficient or needs customization */
/* Tailwind's animate-spin is usually sufficient */

/* Styles for Error Message */
/* Tailwind classes are used directly in HTML, but custom adjustments can go here if needed */
#error-message-container {
    /* Example: Add custom animations if desired */
    /* transition: opacity 0.3s ease-in-out; */
}

/* Style for disabled button with loading text */
#scale-button:disabled {
    position: relative; /* Needed for pseudo-element positioning if used */
    /* You might need to adjust padding if the loading indicator is added inside */
}

#scale-button.loading {
    /* Optionally add a class to change appearance further when loading */
    cursor: wait;
} 