/* Contract Support - Pure Tailwind CSS Implementation */

/* Minimal custom CSS for app functionality only */
.app-screen {
    display: none;
}

.app-screen.active {
    display: block;
}

/* Optional fade animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

/* Helpers for app-like layout */
.app-main-padding-bottom {
    padding-bottom: 4.5rem; /* espacio para footer + margen */
}

.fixed-top-layer {
    z-index: 50;
}
