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

.deal-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

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

/* Modal Styles */
#deal-modal {
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
}

#deal-modal.flex {
    display: flex;
}