body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
    color: #1E293B;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.property-card { transition: all 0.2s ease; }

.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #C5A009;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-pending { background: #FEF3C7; color: #92400E; }
.badge-approved { background: #D1FAE5; color: #065F46; }
.badge-rejected { background: #FEE2E2; color: #991B1B; }

.verified-badge {
    background: linear-gradient(135deg, #FFD700 0%, #C5A009 100%);
}

.linkedin-btn {
    background-color: #0A66C2;
    color: #fff;
    transition: background-color 0.2s ease;
}
.linkedin-btn:hover {
    background-color: #004182;
}

/* Mobile: leave space at the bottom so the fixed bottom nav never covers content */
@media (max-width: 767px) {
    #app-container {
        padding-bottom: 84px;
    }
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #0F172A;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Lightbox */
#lightbox-modal { transition: opacity 0.3s ease; }
#lightbox-modal.hidden { opacity: 0; pointer-events: none; }
#lightbox-image { user-select: none; -webkit-user-drag: none; }

/* iOS Install Banner animation */
#ios-install-banner { animation: slideUp 0.4s ease-out; }
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}