/* Custom utilities for background opacity when Tailwind's built-in
 * utilities (e.g., bg-opacity-70) are unavailable or want
 * to override the compiled output.  This file should be
 * loaded *after* Tailwind CSS in your main layout.
 */

.bg-opacity-70 {
    /* 70% rgba white */
    background-color: rgba(255, 255, 255, 0.7) !important;
}

