/* CashTask Custom Styles */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); body { font-family: 'Inter', sans-serif; background-color: #f8f9fa; color: #343a40; } .navbar-brand { font-weight: 700; color: #14b8a6 !important; } .btn-primary { background-color: #14b8a6; border-color: #14b8a6; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 0.75rem; transition: all 0.3s ease; } .btn-primary:hover { background-color: #109686; border-color: #109686; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .task-card { background-color: #ffffff; border: none; border-radius: 0.75rem; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: all 0.3s ease; height: 100%; } .task-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); } .task-card .card-body { padding: 1.5rem; } .task-card .card-title { font-weight: 600; color: #343a40; } .task-card .card-subtitle { color: #6c757d; } .task-payout { font-size: 1.5rem; font-weight: 700; color: #14b8a6; } .footer { padding: 2rem 0; font-size: 0.9rem; color: #6c757d; }