/* Custom CSS for InmoSol Backoffice PWA */

body {
    -webkit-tap-highlight-color: transparent;
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC; /* Slate 50 */
    color: #1E293B; /* Slate 800 */
}

/* Hide scrollbar for PWA app-like feel */
::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar invisible */
}

/* Mobile-first utility classes */
.safe-area-pt {
    padding-top: env(safe-area-inset-top, 0px);
}
.safe-area-pb {
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Removed .input-field and .btn-primary as Tailwind CDN doesn't support @apply in external files */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}
