/* * FD Manager Custom Styles 
 * ----------------------------
 * All Tailwind utility classes are loaded via CDN in index.php. 
 * Use this file for component-specific styling or complex CSS rules 
 * that are difficult to express in Tailwind.
 */

/* Example: Add a subtle shadow effect to the whole container */
#app-container {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ensure the register form is hidden by default if not using JS to hide it, 
   though JS in ajax.js handles the switching. */
#register-container {
    /* visibility: hidden; will be managed by JS hidden class */
}
