/* Global Styles */
body {
    background-color: #f8fafc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Card Hover Effects */
.card {
    transition: all 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Money Making Link Styles */
.money-link {
    color: #dc2626;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}

.money-link:hover {
    background-color: #fef2f2;
}

/* Fade in animation */
#resultSection {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
