/* Facilito Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC; /* slate-50 */
    color: #1E293B; /* slate-800 */
}

/* Common Premium Card Utility (if not using direct Tailwind classes) */
.premium-card {
    background-color: white;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #2563EB; /* blue-600 */
    overflow: hidden;
}

/* Custom Stepper Styles (if needed globally) */
.stepper-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #E2E8F0; /* gray-200 */
    z-index: -10;
    transform: translateY(-50%);
}
