/*
 * RC Developments - Fuel Depot Management System
 * Website: https://rcdevelopments.co.za
 * Contact: info@rcdevelopments.co.za
 * WhatsApp: +27 61 523 9126
 *
 * This file is for your custom CSS overrides.
 * The main theme (colors, fonts) is handled in /app/views/includes/header.php
 */

/* For example, to make the flash message fade out */
#msg-flash {
    animation: fadeOut 5s forwards;
    animation-delay: 3s;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        height: 0;
        padding: 0;
        margin: 0;
        border: 0;
    }
}